sqlite_modern_cpp
sqlite_modern_cpp copied to clipboard
The C++14 wrapper around sqlite library
When cross compiling my software for OSX via Clang 8 I get this error: ``` In file included from ./hdr/sqlite_modern_cpp/type_wrapper.h:31: /usr/bin/../include/c++/v1/experimental/optional:18:3: warning: " has been removed. Use instead." [-W#warnings] #...
As the title says, it would be nice to have this an option for writing blobs
I wanted do some queries like ``` db
Sometimes when using _prepared_statements_ and a the program exits before its destruction, not all transactions will be committed. Is there a way to prevent that always commit all transactions?
Hello sqlite_modern_cpp is exists in windows (vcpkg) but is not in ubuntu package manager. please add it. and thank you very much. it is really good library.
This is more of a question, i didnt find an answer by looking at examples and tests. Im trying to convert below sqlite3 code to this c++ api. char* sql...
Hi, on the subject that came up in the last merge comments so everybody sees this. I too think we should release a new version because so much has changed...
There is no complete documentation and reference. How to help fix it?
Right now there is such thing in the implementation: ```cpp // Convert char* to string to trigger op
I've created this api for a better ORM like solution which works with sqlite_modern_cpp. This api can collect multiple results 1. to a container like (vector, list , ...etc) of...