Add named parameters support
SQLite supports named parameters in either of these forms:
- $NAME
- :NAME
- @NAME
These parameters should be supplied to the query either in a form of a map
or as a list, the key is always iodata:
- #{":myparam" => "value"}
- [{"$myparam", 1}]
- [{text, "@myparam", "value"}]
This commit is contained in:
@@ -10,3 +10,4 @@
|
||||
|
||||
Aleph Archives
|
||||
Qing Liang <qing.liang.cn@gmail.com>
|
||||
Dmitry Matveyev <public@greenfork.me>
|
||||
|
||||
Reference in New Issue
Block a user