lua-ljsqlite3 icon indicating copy to clipboard operation
lua-ljsqlite3 copied to clipboard

LJSQLite3: SQlite3 Interface

Results 4 lua-ljsqlite3 issues
Sort by recently updated
recently updated
newest added

https://github.com/stepelu/lua-ljsqlite3/blob/master/init.lua#L341 doesn't work on, for instance, [`CREATE TRIGGER` statements ](https://www.sqlite.org/lang_createtrigger.html), that require `BEGIN .. END` blocks this type of query works fine with [`sqlite3_exec`](https://www.sqlite.org/c3ref/exec.html)

```lua for row in stmt:rows() do ``` `stmt:rows()` is an iterator function like `pairs` or `ipairs`, performing one `:step()` at a time until all rows are returned. It `clearbinds` and...

Hi, I thought this was better opened as a feature, rather than wrapping it in a pull request. I have an implementation for SQLite pragmas. It's currently a 'monkey-patch', which...

Hi stepelu, Does lua-ljsqlite3 provide any equivalent of [update_hook method](http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#db_update_hook) in the luasqlite3 library? Or do you know of other way I can subscribe to [sqlite events](https://sqlite.org/c3ref/update_hook.html) with lua? Thanks,...