Files
esqlite/CONTRIBUTERS
Dmitry Matveyev 16580ce11d 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"}]
2023-01-08 17:14:27 +06:00

14 lines
472 B
Plaintext

# This is the official list of people who contribute
# (and typically have contributed) code to the esqlite repository.
# The AUTHORS file lists the copyright holders; this file
# lists people. For example, Google employees are listed here
# but not in AUTHORS, because Google holds the copyright.
# Names should be added to this file as
# Name or Organization <email address>
Aleph Archives
Qing Liang <qing.liang.cn@gmail.com>
Dmitry Matveyev <public@greenfork.me>