We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 922f27e commit e62c4a1Copy full SHA for e62c4a1
1 file changed
README.md
@@ -37,15 +37,15 @@ $ sqliteproxy --db ./examples/vt.db
37
$ bg
38
[1] + 23436 continued sqliteproxy --db ./examples/vt.db
39
$ curl 'http://localhost:2048' \
40
--d sql='select * from vt where md5 = "0060cc2e24f259545558ebd8834dc345"' -L | jq . # POST /
+-d sql="select * from vt where md5 = '0060cc2e24f259545558ebd8834dc345'" -L | jq . # POST /
41
[
42
{
43
"md5": "0060cc2e24f259545558ebd8834dc345",
44
"av_score": "7/61"
45
}
46
]
47
$ curl 'http://localhost:2048' -G \
48
---data-urlencode sql='select * from vt where md5 = "0060cc2e24f259545558ebd8834dc345"' -L | jq . # GET /
+--data-urlencode sql="select * from vt where md5 = '0060cc2e24f259545558ebd8834dc345'" -L | jq . # GET /
49
50
51
0 commit comments