SQLiteCpp icon indicating copy to clipboard operation
SQLiteCpp copied to clipboard

SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.

Results 94 SQLiteCpp issues
Sort by recently updated
recently updated
newest added

i want to fire event after change or update column in table sqlite3_update_hook , is any solution please thanks

question

i becomme 101 error , after search "#define SQLITE_DONE 101 /* sqlite3_step() has finished executing */" but in getErrórMsg i become unknow error , code block is like try {...

I'm updating an SQLiteCpp project to handle concurrent database writes from multiple processes, and am currently detecting that situation with code like: // There's an outer retry loop to try...

Hi, I'm not sure where the problem lie, but since this is the top level infrastructure I'm using, I'll try to post it here. I have a project that runs...

enhancement
question

Calling ``` if( query.executeStep() == true ) { //use only first result } ``` Results on WAL mode not working, since the finalizes is not triggered, changing it to ```...

question

sqlightning is an LMDB backend based version of sqlight3 with significant speedup and multi-threading advantages. It would be great if SQLiteCPP could also abstract it as a backend. https://github.com/LMDB/sqlightning

enhancement

How to obtain the records count ? ``` std::string sql = "SELECT COUNT(*) FROM "; sql += DB_KEY_TAB; sql += " WHERE uuid = '"; sql += uuid; sql +=...

Lack of them defeats the purpose of this library.

enhancement

Is there anything, that prevents converting this library into a header only library? I believe it would be very convenient in many aspects.

enhancement