0
I Use This!
Inactive

Commits : Listings

Analyzed about 23 hours ago. based on code collected 1 day ago.
Apr 23, 2023 — Apr 23, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added a license. Fixes #3 More... about 9 years ago
Fixed strings including a terminating NULL character More... over 11 years ago
Indented FFI declarations so sublime can fold it More... over 11 years ago
Made stmt:bind check for int64_t instead of uint64_t More... over 11 years ago
The database object is now callable, which will execute the argument SQL string via db:exec() Statements are callable, which is equivalent to stmt:step() Statements may be index with numbers, which calls stmt:get_value(index) Statements may be assigned numerical indexes, which calls stmt:bind(index, value) stmt:bind(value, len) works better with ctypes; if the type is a uint64_t then it will bind the 64 bit integer, else it will convert it to a void* and bind a blob of length 'len' More... over 11 years ago
Combined sqlite3.ffi into the main file for portability More... almost 12 years ago
db:get_autocommit() now returns a boolean. More... about 12 years ago
Added db:get_autocommit() More... about 12 years ago
Fixed issue where stmt:step didn't fetch the error message properly More... about 12 years ago
Adjusted what level errors are raised to. More... about 12 years ago
sqlite.open now also returns the error code on failure More... about 12 years ago
Can now choose database open mode. Defaults to RW+Create More... about 12 years ago
Inlined db:checkstep in the only place it was being used and removed it More... about 12 years ago
Fixed error on database close More... about 12 years ago
Blob objects return the void* cdata and the length instead of converting it to a lua string More... about 12 years ago
Fixed a typo with getting blob values More... about 12 years ago
Fixed some bugs with the new error checking More... about 12 years ago
Screw lsqlite3 compatibility. Most failures now throw Lua errors. More... about 12 years ago
It's clear_bindings not clear_binds More... about 12 years ago
Added stmt:clear_binds() More... about 12 years ago
blob:read can now take a buffer to read the data into More... about 12 years ago
Fixed blob:read() with a nil size More... about 12 years ago
bind_blob can generate zeroblobs with a specific length More... about 12 years ago
bind_blob modifications More... about 12 years ago
blob:read() will read the entire blob More... about 12 years ago
Added blob object support More... about 12 years ago
Fixed segmentation faults and some imcompatibilities. Added a debug mode that stores tracebacks of statement allocations More... about 12 years ago
Added constants More... about 12 years ago
Added more functions. Fixed some out-of-bounds problems More... about 12 years ago
Added more methods More... about 12 years ago