Jonathan Guzmán
Jonathan Guzmán
please provide the following information: - compiler name - compiler version - OS - build system: cmake, meson, etc.
can you upload a sample repo with the code that throws the error? as for the error seems that there is a use after free somewhere, probably related to the...
seems that it could be caused for the following reasons: - somewhere in your code the string is modified and you try to use the c_str after it, if you...
this was fixed in #406 feel free to test it
Hi I think that would be a good idea in order to improve adoption for SQLiteCpp, maybe this should be done on some smaller Issues/PRs like: - readme cleanup, and...
Hi @jowr , I just want to be sure that the changes to `CMakeLists.txt` are: - check that `sqlcipher` is included and define `SQLITECPP_USE_SQLITE3MULTIPLECIPHERS` if enabled - check that `SQLite3MultipleCiphers`...
> > * check that `sqlcipher` is included and define `SQLITECPP_USE_SQLITE3MULTIPLECIPHERS` if enabled > > * check that `SQLite3MultipleCiphers` is included and define `SQLITECPP_USE_SQLCIPHER` if enabled > > Actually, it...
we could add this as an optional feature, something similar to the `std::filesystem` in #378 or the DLL support in #406 so the main idea is to add a `#define`...
this is an vcpkg specific issue(see #432 #431) as a workarround you can manually define `SQLITECPP_COMPILE_DLL` in your project definition or via source code like this ```c++ #define SQLITECPP_COMPILE_DLL #include...
reviewing this I think the issue is in how vcpkg configures it: https://github.com/jiayuehua/vcpkg/blob/11ed79186fe850bd3a98cfbf1854514d2b3070a2/ports/sqlitecpp/portfile.cmake#L20C1-L32C2 ```cmake vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" OPTIONS ${FEATURE_OPTIONS} -DSQLITECPP_RUN_CPPLINT=OFF -DSQLITECPP_RUN_CPPCHECK=OFF -DSQLITECPP_INTERNAL_SQLITE=OFF -DSQLITE_ENABLE_COLUMN_METADATA=ON -DSQLITECPP_USE_STATIC_RUNTIME=OFF # unconditionally off because vcpkg's toolchains...