lunarmodules / luasql

LuaSQL is a simple interface from Lua to a DBMS.
http://lunarmodules.github.io/luasql
545 stars 190 forks source link

Support binding of parameters for SQLite3 in conn:execute(sql, ...) #128

Closed w-oertl closed 3 years ago

w-oertl commented 3 years ago

like the ODBC driver. No support for prepared statements yet. Note that named parameters must exactly match the placeholder in the SQL statement, i. e. :a or $a or @a needs to include the initial character. When using ? or ?n, use an index starting at 1.

tomasguisasola commented 3 years ago

Thanks