luwak/test/insert.http
sjcsjc123 b6ace815d2 v1
2023-07-21 11:33:36 +08:00

25 lines
308 B
HTTP

### Request1
POST http://localhost:8080/test
Content-Type: application/json
[
{
"sql": "INSERT INTO user (name, age) VALUES (?, ?)",
"params": [
"John",
30
]
}
]
### Request2
POST http://localhost:8080/insert/user
Content-Type: application/json
{
"name": "John",
"age": 30
}