sql-query-identifier
sql-query-identifier copied to clipboard
FEAT: Support a variety of parameter types per syntax type
For example, Postgresql supports:
-
$1 -
:paramname
SQLite: https://www.sqlite.org/c3ref/bind_blob.html
- ?
- ?NNN
- :VVV
- @VVV
- $VVV
MySQL:
- ?? - identifiers
- ? - values https://github.com/mysqljs/mysql#preparing-queries
More research needed on the others