sqlite_modern_cpp icon indicating copy to clipboard operation
sqlite_modern_cpp copied to clipboard

The C++14 wrapper around sqlite library

Results 40 sqlite_modern_cpp issues
Sort by recently updated
recently updated
newest added

VS2019, use C++20: std::is_pod_v can't be used, compilation failed. And in VS2019, use C++17: need to #define _SILENCE_ALL_CXX17_DEPRECATION_WARNINGS, otherwise compilation failed. Looking forward to updating,thanks.

…_SQLITE_STD_OPTIONAL_SUPPORT in order to use null values via std::optional with a C++17 (or later) compiler.

How many rows has modified by an update command? What value when auto_increment of primary key after inserted?

any plan for a latest tag release ? thx.

Usage of `std::optional` and the ` C:\Users\markus\develop\bug_demo\vendor\sqlite_modern_cpp\hdr\sqlite_modern_cpp.h(613,27): message : or 'sqlite::database_binder &sqlite::operator

At the moment to use this library as submodule into an existing cmake project, it requires the use of `ExternalProject_Add`. It will be useful to add the support to cmake.

Application may require queries to be interrupt. AFAIK, sqlitemoderncpp does not provide any way to do that. For now, I'll try to use `sqlite3_interrupt(m_db.connection().get());`. But that would be great to...

Hello, i was wondering is it possible to change the database name? Since i am using this for a javascript module, Basically what i wanted to do is just maybe...

Reverts SqliteModernCpp/sqlite_modern_cpp#178 #178 had not to be merged at least because `reset` method was removed from public access of `database_binder` in https://github.com/SqliteModernCpp/sqlite_modern_cpp/commit/05ea5a8ee9cc68b68d73533781f77fca033e9f7f

Sorry asking here but I wanted to use this library for my project but how to get name of columns, data type of columns and number of retuned rows for...