SQLiteCpp
SQLiteCpp copied to clipboard
SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.
Hi, We have some problems using your lib with conan because the conan sqlitecpp receipt has option "threadsafe=2" that set sqlite3 to be compiled using ```SQLITE_THREADSAFE=2```. But we always use...
On native sqlite3 library i can assign db object to a class variable and use it in other methods without open everytime. But with SQLiteC++, I cannot share the object....
Wish query insert statement that support with ZeroBlob. And then can write blob data by chunked buffer/block. And can read blob data by chunked buffer/block too. ( These APIs will...
SQLiteCPP uses the SQLite amalgamation source when building with SQLITECPP_INTERNAL_SQLITE=ON. This puts all the library's code in a single section which is linked as a dependency with SQLiteCPP. Compiling the...
Hello, Currently there is no way to declare a SQLite::Database object without initialization. I have a recommendation that the class SQLite::Database should have more functions allowing to delay initialization or...
[CMakeLists.txt](https://github.com/SRombauts/SQLiteCpp/files/4028650/CMakeLists.txt) Still trying to get this to 'work' with embedding the source code; maybe I'm barking up the wrong tree. I have built SQLiteCpp and have SQLiteCpp include directory under...
Not sure what the default collation is for SQLite, but are there plans to provide access to this via SQLiteCPP? Thanks
We need to add a few more variants to Github Actions or Travis CI build matrices.
i have query string , with bind function thad add more value for query . when i want to debug, want this query with values , not with character ?...