SQLiteCpp
SQLiteCpp copied to clipboard
SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.
Good morning SRombauts, kindly, I ask you to update the SQLiteCpp package on Nuget.org. Last update on Nuget: 2/26/2016, last version: 1.1.1. Thank you very much
I get this error when importing sqlitecpp using vcpkg: ``` undefined reference to SQLite::Statement::Statement(SQLite::Database const&, char const*) undefined reference to `SQLite::Statement::executeStep()' undefined reference to `SQLite::Database::getErrorMsg() const' ``` and like 20...
Was this removed? CMake Error at CMakeLists.txt:10 (find_package): By not providing "FindSQLiteCpp.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "SQLiteCpp", but CMake...
First of all, thank you for this great library! It works really well. I'm trying to use `Statement::getColumns` to populate an intermediary struct with simple fields for each column: ```cpp...
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. Release notes Sourced from actions/checkout's releases. v5.0.0 What's Changed Update actions checkout to use node 24 by @salmanmkc in actions/checkout#2226 Prepare v5.0.0 release by...
To avoid a deprecation warning in CMake 3.31 and above
My goal is to fix this issue: https://github.com/SRombauts/SQLiteCpp/issues/517 Previous, similar PRs: - https://github.com/SRombauts/SQLiteCpp/pull/224 : ambiguous overloads - https://github.com/SRombauts/SQLiteCpp/pull/355 : missing C++17 ifdef guards I should probably add unit tests and...
This pull request adds support for C++20 modules to SQLiteCpp, by creating modules `sqlite.*`. It is built using the macro `SQLITECPP_BUILD_MODULES`. The `README.md` file has also been updated to contain...
I frequently use [`std::string_view`](https://en.cppreference.com/w/cpp/string/basic_string_view.html) to avoid copying sub-strings. I wanted to pass a string_view to `Statement::bindNoCopy` but saw the type error. My first instinct was to replace it with `statement.bindNoCopy(1,...