No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

SQLiteCpp package from sqlitecpp repo

SQLiteCpp

Package Summary

Tags No category tags.
Version 3.3.2
License MIT
Build type CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/srombauts/sqlitecpp.git
VCS Type git
VCS Version master
Last Updated 2025-01-24
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

A smart and easy to use C++ SQLite3 wrapper.

Additional Links

No additional links.

Maintainers

  • Sébastien Rombauts

Authors

  • Sébastien Rombauts

SQLiteC++

release license Travis CI Linux Build Status AppVeyor Windows Build status GitHub Actions Build status Coveralls Coverity Join the chat at https://gitter.im/SRombauts/SQLiteCpp

SQLiteC++ (SQLiteCpp) is a lean and easy to use C++ SQLite3 wrapper.

About SQLiteC++:

SQLiteC++ offers an encapsulation around the native C APIs of SQLite, with a few intuitive and well documented C++ classes.

License:

Copyright (c) 2012-2024 Sébastien Rombauts (sebastien.rombauts@gmail.com)

Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT)

Note on redistribution of SQLite source files

As stated by the MIT License, you are welcome to reuse, modify, and redistribute the SQLiteCpp source code the way you want it to, be it a git submodule, a subdirectory, or a selection of some source files.

I would love a mention in your README, a web link to the SQLite repository, and a mention of the author, but none of those are mandatory.

About SQLite underlying library:

SQLite is a library that implements a serverless transactional SQL database engine. It is the most widely deployed SQL database engine in the world. All of the code and documentation in SQLite has been dedicated to the public domain by the authors. http://www.sqlite.org/about.html

The goals of SQLiteC++ are:

  • to offer the best of the existing simple C++ SQLite wrappers
  • to be elegantly written with good C++11 design, STL, exceptions and RAII idiom
  • to keep dependencies to a minimum (C++11 STL and SQLite3)
  • to be portable
  • to be light and fast
  • to be thread-safe only as much as SQLite “Multi-thread” mode (see below)
  • to have a good unit test coverage
  • to use API names sticking with those of the SQLite library
  • to be well documented with Doxygen tags, and with some good examples
  • to be well maintained
  • to use a permissive MIT license, similar to BSD or Boost, for proprietary/commercial usage

It is designed using the Resource Acquisition Is Initialization (RAII) idiom (see http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization), and throwing exceptions in case of SQLite errors (except in destructors, where assert() are used instead). Each SQLiteC++ object must be constructed with a valid SQLite database connection, and then is always valid until destroyed.

Supported platforms:

Now requires a C++11 compiler. Use branch sqlitecpp-2.x for latest pre-C++11 developments.

Developments and tests are done under the following OSs:

  • Ubuntu 14.04, 16.04 and 18.04 (Travis CI and Github Actions)
  • Windows 10, and Windows Server 2012 R2, Windows Server 2016, Windows Server 2022 (AppVeyor and Github Actions)
  • MacOS 10.11 and 11.7 (Travis CI and Github Actions)
  • Valgrind memcheck tool

And the following IDEs/Compilers

  • GCC 4.8.4, 5.3.0, 7.1.1 and latest eg 9.4 (C++11, C++14, C++17)
  • Clang 5 and 7 (Travis CI)
  • AppleClang 8, 9 and 13 (Travis CI and Github Actions)
  • Xcode 8 & 9 (Travis CI)
  • Visual Studio Community/Entreprise 2022, 2019, 2017, and 2015 (AppVeyor and Github Actions)

Dependencies

  • a modern C++11 STL implementation with GCC, Clang, or Visual Studio 2015
  • exception support (the class Exception inherits from std::runtime_error)
  • the SQLite library (3.7.15 minimum from 2012-12-12) either by linking to it dynamically or statically (install the libsqlite3-dev package under Debian/Ubuntu/Mint Linux), or by adding its source file in your project code base (source code provided in src/sqlite3 for Windows), with the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata).

Getting started

Installation

To use this wrapper, you need to add the SQLiteC++ source files from the src/ directory in your project code base, and compile/link against the sqlite library.

The easiest way to do this is to add the wrapper as a library. The “CMakeLists.txt” file defining the static library is provided in the root directory, so you simply have to add_subdirectory(SQLiteCpp) to you main CMakeLists.txt and link to the “SQLiteCpp” wrapper library.

Example for Linux:

add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/thirdparty/SQLiteCpp)

add_executable(main src/main.cpp)
target_link_libraries(main
  SQLiteCpp
  sqlite3
  pthread
  dl
  )

Thus this SQLiteCpp repository can be directly used as a Git submodule. See the SQLiteCpp_Example side repository for a standalone “from scratch” example.

Under Debian/Ubuntu/Mint Linux, you can install the libsqlite3-dev package if you don’t want to use the embedded sqlite3 library.

Building example and unit-tests:

Use git to clone the repository. Then init and update submodule “googletest”.

git clone https://github.com/SRombauts/SQLiteCpp.git
cd SQLiteCpp
git submodule init
git submodule update

Installing SQLiteCpp (vcpkg)

Alternatively, you can build and install SQLiteCpp using vcpkg dependency manager:

```bash or powershell git clone https://github.com/Microsoft/vcpkg.git cd vcpkg ./bootstrap-vcpkg.sh ./vcpkg integrate install ./vcpkg install sqlitecpp


The SQLiteCpp port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.


#### Using SQLiteCpp on a system-wide installation

If you installed this package to your system, a `SQLiteCppConfig.cmake` file will be generated & installed to your system.  
This file lets you link against the SQLiteCpp library for use in your Cmake project.

Here's an example of using this in your CMakeLists.txt

```cmake
# You can optionally define a minimum version in this call
find_package(SQLiteCpp REQUIRED)
# For this example, lets say you created an target with add_executable (or add_library) called "my_target"
# You can optionally declare PUBLIC or PRIVATE linkage here, depending on your needs.
target_link_libraries(my_target PRIVATE SQLiteCpp)

CMake and tests

A CMake configuration file is also provided for multi-platform support and testing.

Typical generic build for MS Visual Studio under Windows (from build.bat):

mkdir build
cd build

cmake ..        # cmake .. -G "Visual Studio 16 2019"    # for Visual Studio 2019
@REM Generate a Visual Studio solution for latest version found
cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON ..

@REM Build default configuration (ie 'Debug')
cmake --build .

@REM Build and run tests
ctest --output-on-failure

Generating the Linux Makefile, building in Debug and executing the tests (from build.sh):

mkdir Debug
cd Debug

# Generate a Makefile for GCC (or Clang, depanding on CC/CXX envvar)
cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON ..

# Build (ie 'make')
cmake --build .

# Build and run unit-tests (ie 'make test')
ctest --output-on-failure

Building with meson

You can build SQLiteCpp with meson using the provided meson project.

you can install meson using pip: pip install meson however you may need to install ninja and other dependencies depending on your platform as an compiler toolchain

Arch Linux:

# install clang (compiler toolchain) and ninja (recommended build system)
sudo pacman -Syu clang ninja
# install python and pip (required for meson)
sudo pacman -Syu python python-pip
# install meson 
pip install meson

Ubuntu:

# install gcc(compiler toolchain) and ninja (recommended build system)
sudo apt install build-essential ninja-build
# install python and pip (required for meson)
sudo apt install python3 python3-pip
# install meson
pip install meson

for example you can build the library using the default options with:

# setup the build directory
meson setup builddir 
# build sqlitecpp
meson compile -C builddir

or if you wish to build with tests and examples:

# setup the build directory with tests and examples enabled
meson setup builddir -DSQLITECPP_BUILD_TESTS=true -DSQLITECPP_BUILD_EXAMPLES=true
# build sqlitecpp
meson compile -C builddir

Using SQLiteCpp as subproject in meson

please check the examples in the examples folder for usage of SQLiteCpp as a subproject in meson, as for the wrap file you can use the one provided in the subprojects folder called SQLiteCpp.wrap

keep in mind that even that this wrap should be up to date, it is recommended to check the latest version of SQLiteCpp and update the wrap file accordingly

System SQLiteCpp support under meson

additionally meson can detect and use the bundled sqlitecpp library included on your system if available, for example with vcpkg you would need to set the PKG_CONFIG_PATH environment variable to the vcpkg directory before running meson setup, and if applies the corresponding PKG-CONFIG executable to the path.

Building the Doxygen/html documentation

Make sure you have Dogygen installed and configure CMake using the SQLITECPP_RUN_DOXYGEN=ON flag:

cmake -DSQLITECPP_RUN_DOXYGEN=ON   <MORE ARGUMENTS_HERE>

and then execute the SQLiteCpp_doxygen target (or build all targets, see above). The documentation will be generated in the ‘doc’ subfolder of the source tree.

CMake options

  • For more options on customizing the build, see the CMakeLists.txt file.

Troubleshooting

Under Linux, if you get multiple linker errors like “undefined reference to sqlite3_xxx”, it’s that you lack the “sqlite3” library: install the libsqlite3-dev package.

If you get a single linker error “Column.cpp: undefined reference to sqlite3_column_origin_name”, it’s that your “sqlite3” library was not compiled with the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata). You can:

  • either recompile the sqlite3 library provided by your distribution yourself (seek help online)
  • or turn off the option(SQLITE_ENABLE_COLUMN_METADATA "Enable Column::getColumnOriginName(). Require support from sqlite3 library." ON) in CMakeFiles.txt (or other build system scripts)
  • or turn on the option(SQLITECPP_INTERNAL_SQLITE "Add the internal SQLite3 source to the project." ON) in CMakeFiles.txt

Continuous Integration

This project is continuously tested under Ubuntu Linux with the gcc and clang compilers using the Travis CI community service with the above CMake building and testing procedure. It is also tested in the same way under Windows Server 2012 R2 with Visual Studio 2013 compiler using the AppVeyor continuous integration service.

Detailed results can be seen online:

Thread-safety

SQLite supports three modes of thread safety, as describe in “SQLite And Multiple Threads”: see http://www.sqlite.org/threadsafe.html

This SQLiteC++ wrapper does no add any locks (no mutexes) nor any other thread-safety mechanism above the SQLite library itself, by design, for lightness and speed.

Thus, SQLiteC++ naturally supports the “Multi Thread” mode of SQLite: “In this mode, SQLite can be safely used by multiple threads provided that no single database connection is used simultaneously in two or more threads.”

But SQLiteC++ does not support the fully thread-safe “Serialized” mode of SQLite, because of the way it shares the underlying SQLite precompiled statement in a custom shared pointer (See the inner class “Statement::Ptr”).

Valgrind memcheck

Run valgrind to search for memory leaks in your application, the SQLiteCpp wrapper, or the sqlite3 library. Execute the following command under Unix like OS (Linux, MacOS or WSL2/Ubuntu under Windows Subsystem for Linux):

valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose build/SQLiteCpp_example1

or uncoment the line at the end of build.sh

Examples

The first sample demonstrates how to query a database and get results:

try
{
    // Open a database file
    SQLite::Database    db("example.db3");
    
    // Compile a SQL query, containing one parameter (index 1)
    SQLite::Statement   query(db, "SELECT * FROM test WHERE size > ?");
    
    // Bind the integer value 6 to the first parameter of the SQL query
    query.bind(1, 6);
    
    // Loop to execute the query step by step, to get rows of result
    while (query.executeStep())
    {
        // Demonstrate how to get some typed column value
        int         id      = query.getColumn(0);
        const char* value   = query.getColumn(1);
        int         size    = query.getColumn(2);
        
        std::cout << "row: " << id << ", " << value << ", " << size << std::endl;
    }
}
catch (std::exception& e)
{
    std::cout << "exception: " << e.what() << std::endl;
}

The second sample shows how to manage a transaction:

try
{
    SQLite::Database    db("transaction.db3", SQLite::OPEN_READWRITE|SQLite::OPEN_CREATE);

    db.exec("DROP TABLE IF EXISTS test");

    // Begin transaction
    SQLite::Transaction transaction(db);

    db.exec("CREATE TABLE test (id INTEGER PRIMARY KEY, value TEXT)");

    int nb = db.exec("INSERT INTO test VALUES (NULL, \"test\")");
    std::cout << "INSERT INTO test VALUES (NULL, \"test\")\", returned " << nb << std::endl;

    // Commit transaction
    transaction.commit();
}
catch (std::exception& e)
{
    std::cout << "exception: " << e.what() << std::endl;
}

The third sample shows how to manage a prepared statement with a transaction:

try 
{ 
    SQLite::Database    db("test.db3", SQLite::OPEN_READWRITE|SQLite::OPEN_CREATE);

    db.exec("DROP TABLE IF EXISTS test");

    db.exec("CREATE TABLE test (value INTEGER)");

    // Begin transaction
    SQLite::Transaction transaction(db);

    // Prepare query
    SQLite::Statement query {db, "INSERT INTO test (value) VALUES (?)"};

    // Collection to save in database
    std::vector<int> values{1, 2, 3};

    for (const auto& v: values)
    {
      query.bind(1, v);
      query.exec();
      query.reset();
    }

    // Commit transaction
    transaction.commit();
}
catch (std::exception& e)
{
  std::cout << "exception: " << e.what() << std::endl;
}

How to handle assertion in SQLiteC++:

Exceptions shall not be used in destructors, so SQLiteC++ uses SQLITECPP_ASSERT() to check for errors in destructors. If you don’t want assert() to be called, you have to enable and define an assert handler as shown below, and by setting the flag SQLITECPP_ENABLE_ASSERT_HANDLER when compiling the lib.

#ifdef SQLITECPP_ENABLE_ASSERT_HANDLER
namespace SQLite
{
/// definition of the assertion handler enabled when SQLITECPP_ENABLE_ASSERT_HANDLER is defined in the project (CMakeList.txt)
void assertion_failed(const char* apFile, const long apLine, const char* apFunc, const char* apExpr, const char* apMsg)
{
    // Print a message to the standard error output stream, and abort the program.
    std::cerr << apFile << ":" << apLine << ":" << " error: assertion failed (" << apExpr << ") in " << apFunc << "() with message \"" << apMsg << "\"\n";
    std::abort();
}
}
#endif

How to contribute

GitHub website

The most efficient way to help and contribute to this wrapper project is to use the tools provided by GitHub:

Contact

You can also email me directly, I will try to answer questions and requests whenever I get the time for it.

Coding Style Guidelines

The source code use the CamelCase naming style variant where:

  • type names (class, struct, typedef, enums…) begin with a capital letter
  • files (.cpp/.h) are named like the class they contain
  • function and variable names begin with a lower case letter
  • member variables begin with a ‘m’, function arguments begin with a ‘a’, booleans with a ‘b’, pointers with a ‘p’
  • each file, class, method and member variable is documented using Doxygen tags
  • braces on their own line See also http://www.appinf.com/download/CppCodingStyleGuide.pdf for good guidelines

See also - Some other simple C++ SQLite wrappers:

See bellow a short comparison of other wrappers done at the time of writing:

  • sqdbcpp: RAII design, simple, no dependencies, UTF-8/UTF-16, new BSD license
  • sqlite3cc: uses boost, modern design, LPGPL
  • sqlite3pp: modern design inspired by boost, MIT License
  • SQLite++: uses boost build system, Boost License 1.0
  • CppSQLite: famous Code Project but old design, BSD License
  • easySQLite: manages table as structured objects, complex
  • sqlite_modern_cpp: modern C++11, all in one file, MIT license
  • sqlite_orm: modern C++14, header only all in one file, no raw string queries, BSD-3 license
CHANGELOG

2012 Mar 30

  • Start of a new thin C++ SQLite wrapper

2012 Apr 2

  • The wrapper is functional
  • Added documentation and examples
  • Publication on GitHub

Version 0.1.0 - 2012 Apr 4

  • Added a Database::exec() method to execute simple SQL statement
  • Added a version number like in sqlite3.h, starting with 0.1.0

Version 0.2.0 - 2012 Apr 11

  • Added getLastInsertId() and setBusyTimout()
  • Added bind() by name methods

Version 0.3.0 - 2012 Apr 16

  • Added an easy wrapper Database::execAngGet()

Version 0.4.0 - 2012 Apr 23

  • Added a Database::tableExists() easy to use function

Dec 10 2012

  • Added a Statement::exec() method to execute a one-step query with no expected result

Version 0.5.0 - 2013 March 9

  • Added assert() on errors on destructors
  • Added getBytes()
  • Added getBlob(), getType() and isInteger/isFloat/isText/isBlob/isNull
  • Added bind() for binary blob data

Version 0.5.1 - 2013 April 7

  • Added Column::getName()

Version 0.6.0 - 2013 November 22

  • Renamed Column::getName() to Column::getOriginName()
  • Added Column::getName()

Version 0.7.0 - 2014 January 9

  • Added Database::createFunction()
  • Added std::string version of existing APIs
  • Improved CMake with more build options and Doxygen auto-detection

Version 0.8.0 - 2014 February 26

  • Database constructor support opening a database with a custom VFS (default to NULL)
  • Changed Column::getText() to return empty string “” by default instead of NULL pointer (to handle std::string conversion)

Version 1.0.0 - 2015 May 3

  • Public headers file moved to include/ dir
  • Added support to biicode in CMakeLists.txt
  • Added Unit Tests
  • Added aBusyTimeoutMs parameter to Database() constructors
  • Added Database::getTotalChanges()
  • Added Database::getErrorCode()
  • Added Statement::clearBindings()
  • Added Statement::getColumn(aName)
  • Added Statement::getErrorCode()
  • Added Statement::getColumnName(aIndex)
  • Added Statement::getColumnOriginName(aIndex)

Version 1.1.0 - 2015 May 18

  • Fixed valgrind error on Database destructor
  • Added Database::loadExtension

Version 1.2.0 - 2015 September 9

  • Fixed build with GCC 5.1.0
  • Fixed MSVC release build warning
  • Fixed CppDepends warnings
  • Updated documentation on installation
  • Added Database::getHandle()

Version 1.3.0 - 2015 November 1

  • Fixed build with Visual Studio 2015
  • Further improvements to README
  • Added Backup class

Version 1.3.1 - 2016 February 10

  • Switch Linux/Mac build to the provided SQLite3 C library
  • Update SQLite3 from 3.8.8.3 to latest 3.10.2 (2016-01-20)
  • Remove warnings
  • Remove biicode support (defunct service, servers will shutdown the 16th of February 2016)

Version 2.0.0 - 2016 July 25

  • Update SQLite3 from 3.10.2 to latest 3.13 (2016-05-18)
  • Move #include from headers to .cpp files only using forward declarations
  • Add Database::VERSION to reach SQLITE_VERSION without including sqlite3.h in application code
  • Add getLibVersion() and getLibVersionNumber() to get runtime version of the library
  • Better exception messages when Statements fail PR #84
  • Variadic templates for bind() (C++14) PR #85
  • Add Statement::bindNoCopy() methods for strings, using SQLITE_STATIC to avoid internal copy by SQLite3 PR #86
  • Add Statement::bind() overload for uint32_t, and Column::getUint() and cast operator to uint32_t PR #86
  • Use the new SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION from SQLite 3.13 for security reason
  • Rename Backup::remainingPageCount()/totalPageCount() to Backup::getRemainingPageCount()/getTotalPageCount()
  • Remove Column::errmsg() method : use Database or Statement equivalents
  • More unit tests, with code coverage status on the GitHub page
  • Do not force MSVC to use static runtime if unit-tests are not build

Version 2.1.0 - 2017 July 18

  • Update SQLite3 from 3.13 to latest 3.19.3 (2017-06-08)
  • Fixed Incompatibility in 3.19.0 (to use older SQLite version set the CMake variable SQLITE_USE_LEGACY_STRUCT) #125
  • Fixed link error (inline in cpp) and compiler warnings (unused variable…) #96
  • Added ability to open encrypted databases (using SQLCipher, eg. libsqlcipher-dev) #107
  • Added convenience functions for constructing objects from a row #114
  • Added CMake install step #118
  • Fix warnings #119
  • Make cpplint.py Python-3 compatible #120
  • Link libssp when targeted #100
  • Removed redundant const #102

Version 2.2.0 - 2017 Sept 19

  • Update SQLite3 from 3.19.3 to latest 3.20.1 (2017-08-24) #143
  • Added tryExecuteStep and tryReset #142
  • Removed virtual keywords from destructors #140
  • Removed misplaced noexcept keyword #139
  • Improved Exception class C++ conformance #138
  • Fix warnings #134
  • Deprecated Statement::isOk() to Statement::hasRow()

Version 2.3.0 - 2019 March 3

  • Update SQLite3 from 3.20.1 to latest 3.27.2 (2019-02-25) #183 #187
  • Add Statement binding for long int values #147
  • Allows long int for bind when used with name #148
  • More cmake instructions for Linux #151
  • Add comparison with sqlite_orm #141
  • Fix Statement::bind truncates long integer to 32 bits on x86_64 Linux #155
  • Add a move constructor to Database #157
  • Added tests for all MSVC compilers available on AppVeyor (2013, 2015, 2017) #169
  • Update VariadicBind.h #172
  • Better CMake compatibility #170
  • Add implicit cast operator to char and short types #179 #180

Version 2.4.0 - 2019 August 25

  • Update SQLite3 from 3.27.2 to 3.29.0 (2019-07-10) #217
  • #191 CMake Warning line 299
  • #190 Implement move constructors
  • #192 Add wrapper for bind parameter count
  • #197 Add tuple_bind and execute_many (requested by #24)
  • #199 Fix #156 misleading error message in exception from Statement::exec
  • #201 Add Statement::getExpandedSQL() to get the SQL text of prepared statement with bound parameters expanded
  • #211 Implement Database::backup()
  • #215 Disable implicit fallthrough warning when building internal sqlite3
  • #216 Set PROJECT_VERSION to fix CMP0048 Policy warnings

Version 2.5.0 - 2019 December 31

  • Update SQLite3 from 3.29.0 to 3.30.1 (2019-10-10)
  • 100% Unit Test coverage
  • #212 fix sqlite3 compile properties (jzt)
  • #219 Disable cast-function-type warning when building internal sqlite (zxey)
  • #230 Fixed installation on other than Ubuntu GNU/Linux distributions (xvitaly)
  • #228 use transitive compile definitions via cmake (BioDataAnalysis/emmenlau)
  • #232 Added support of packaged GTest for running unit tests (xvitaly)
  • #231 Added SOVERSION field for shared library (xvitaly)
  • #229 Explicitly find and link against system sqlite library (xvitaly)
  • #235 Added support for cmake dependencies and version information (BioDataAnalysis/emmenlau)
  • #249 Added SQLite header parsing functionality and associated tests (patrick–)

  • #251 Added example for getHeaderInfo()

Version 3.0.0 - 2020 January 31

  • C++11 is now required
  • CMake 3.1 minimum
  • Visual Studio 2015 minimum
  • Update Googletest to latest release 1.10
  • Add Github Actions continuous integration solution
  • Add Valgrind memcheck tool to Travis CI
  • Remove Statement::isOk() deprecated in 2.2.0 when renamed to Statement::hasRow()
  • Replace Database::backup() “C” implementation by calling the Backup class
  • #252 Run Valgrind memcheck on Travis CI
  • #253 Keep inline functions for GCov code coverage
  • #254 Re-enable Coverity static analysis
  • #256 Fix linking with system library (libsqlite3)
  • #242 Added a getIndex method and used it (KOLANICH)
  • #257 Improve Statement unit tests coverage (bind by name with a std::string)
  • #234 support for external sqlite3 (BioDataAnalysis/emmenlau)
  • #243 adding a pure attribute to getIndex() (KOLANICH)

Version 3.1.0 - 2020 August 11

  • Update SQLite3 from 3.30.1 to 3.32.3 (2020-06-18)
  • #274 Install both cmake files into same lib directory from tcraigtyler
  • #275 Add a method on Statement to get the declared type of a column. from daniel-schmidt
  • #284 Add SQLITE_OPEN_FULLMUTEX flag from rwrx
  • #286 Add CMake option to toggle stack protection from chrisdalke
  • #287 Fixed installation on other than Ubuntu distributions from xvitaly
  • #288 Allow building of sqlite JSON1 extension when building internal sqlite library from zxey

Version 3.1.1 - 2020 August 19

  • #292 Fix compilation if using SQLITE_HAS_CODEC from sum01
  • #293 Remove FindSQLiteCpp.cmake from sum01

Version 3.2.0 - 2022 Septembre 18

  • #300 #316 #362 #368 Updated SQLite3 from 3.32.3 to 3.39.3 (2022-09-05)
  • #236 Disable explicit setting of MSVC runtime from BioDataAnalysis/emmenlau
  • #308 Fix build warning due to string truncation from stauffer-garmin
  • #311 Add Database::tryExec() from kcowolf
  • #313 [CMake] Add SQLITECPP_INCLUDE_SCRIPT option from past-due
  • #314 Add Database constructor for filesystem::path (#296) from ptrks
  • #295 Compile internal SQLite library with -ffunction-sections from smichaku
  • #299 Added Savepoint support from catalogm
  • #333 Added Database and Statement getChanges()
  • #305 Add other constants that work with sqlite3_open_v2 from LuAPi/more-flags
  • #333 Added Database and Statement method getChanges() from SRombauts/get-changes
  • #334 fix link for HAS_CODEC from linux-fan-dave/master
  • #338 fix load extension from paulo-coutinho/fix-load-extension
  • #335 from jagerman/older-macos-avoid-std-filesystem
  • #337 Add catkin configuration from ardabbour/master
  • #339 Allow specifying transaction behaviors DEFERRED, IMMEDIATE, and EXCLUSIVE from jjenkins278/transaction_behavior
  • #340 add HTML keywords and properly link up the links in docs/README.md from phoebe-leong/patch-1
  • #341 Install the package.xml file from ardabbour/patch-1
  • #352 add basic meson support from ninjaoflight/meson-support
  • #349 Refactoring of Statement and Column classes from Kacperos155/refactoring-Statement&Column
  • #359 Fix compilation issues earlier than iOS 13
  • #354 Windows improved support (meson) from ninjaoflight/windows-migration
  • #361 Fix Statement unit test using long from SRombauts/fix-statement-unit-tests-long-long-type
  • #346 Add compatible definition for std::experimental::filesystem from guoh27/master
  • #364 Removal of remaining long APIs from SRombauts/convert-remaining-long-types
  • #366 Add vcpkg installation instructions from FrankXie05/vcpkg-instructions
  • #360 Small improvements and code cleaning from Kacperos155/small_improvements

Versions 3.2.1 - 2022 Decembre 12

  • #383 Update SQLite from 3.39.3 to 3.40.0 (2022-11-16) from SRombauts/update-sqlite-340
  • #370 Don’t link anymore with Visual Studio’s static runtime by default from SRombauts/dont-enforce-static-linking
  • #371 from SRombauts/appveyor-vs-2022
  • #277 from cuberite/cmake-scoping
  • #374 Update googletest from vuhailongkl97/master
  • #377 Some documentation fixes from cbielow/fix_doc
  • #380 [Meson] fixes for meson project from ninjaoflight/windows-support
  • #387 Ensure that TEXT column is UTF-8 encoded before using sqlite3_column_blob() from dougnazar
  • #385 disable SQLITECPP_USE_STACK_PROTECTION when on MinGW from SRombauts/mingw-disable-stack-protection
  • #386 [meson] Update SQLite from 3.39.3 to 3.40.0 from ninjaoflight/sqlite-meson-update
  • #389 [meson] add missing compile options from ninjaoflight/meson-fixes

Version 3.3.0 - 2023 May 24

  • #393 Fix preprocessor issues from jowr/fix_preprocessor_issues
  • #394 check if SQLITE_OPEN_NOFOLLOW is defined from ninjaoflight/macos-11-fix
  • #391 meson project changes based on wrap submission review from ninjaoflight/meson-macos-fix
  • #390 fix incorrect work of savepoint from spoyler/save_point Sébastien Rombauts 12/15/2022 01:12 PM
  • #396 Rename Savepoint RollbackTo() and fix class comments and formatting from SRombauts/rename-savepoint-rollback-to
  • #384 Add Mingw GitHub actions from SRombauts/mingw-github-actions
  • #397 Add a Transaction::rollback() method from SRombauts/add-transaction-rollback
  • #395 add meson usage guide from ninjaoflight/meson-readme-guide
  • #401 Fix meson installation from dougnazar/fix_meson_install
  • #400 CMakr/meson Lint corrections from ninjaoflight/lint-corrections
  • #404 Add documentation for prepared statements in transactions from ewarchul/query_transactions_example
  • #399 add disable option for sqlite3_expanded_sql from ninjaoflight/optional-sqlite3_expanded_sql
  • #408 correct executable name in meson from ninjaoflight/patch-2
  • #407 Create Meson CI from ninjaoflight/patch-1
  • #409 Update package.xml from poshul/patch-1
  • #410 use checkout@v3 in CMake CI from ninjaoflight/fix-nodejs-warnings
  • #406 DLL export/import using BUILD_SHARED_LIBS from pierre-aimi/dllexport_import
  • #415 Remove mismatched else condition in CMakeLists.txt from Timmmm/patch-1
  • #413 Fix compiler warnings from ninjaoflight/fix-visibility-warning
  • #423 Update SQLite from 3.40.0 to 3.42.0 (2023-05-16) from SRombauts/update-sqlite

Version 3.3.1 - 2023 Aug 27

  • #428 Add CMake option SQLITE_ENABLE_DBSTAT_VTAB and SQLITE_ENABLE_RTREE from SRombauts/cmake-sqlite-enable-dbstat-vtab
  • #434 Define SQLITECPP_COMPILE_DLL as PUBLIC from calumr/fix-dll-import
  • #439 Update CMake minimum version to 3.5 to get rid of a new deprecation warning with CMake 3.27 from SRombauts/cmake-update-minimum-version
  • #441 Cleanup of the Github “build” workflow from SRombauts/github-actions-improvements
  • Update usage of SQLITECPP_USE_STATIC_RUNTIME (#438)
  • Don’t build the googlemock subproject, only the main googletest library
  • Declare BUILD_SHARED_LIBS option for discoverability (#440)
  • Set -DBUILD_SHARED_LIBS=ON by default on scripts and CI/CD (#442)
  • Update SQLite from 3.42.0 to 3.43.0 (2023-08-24) (#443)
  • Rename the original build.yml to cmake.yml vs meson.yml (#444)

Version 3.3.2 - 2024 Aug 16

  • Fix and update Travis CI workflow (#450)
  • Update Googletest to v1.15.2 (#451) and (#478)
  • [Meson] update meson dependencies (#448)
  • Macos ci fix (#476)
  • Update meson dependencies [Meson only] (#475)
  • Update SQLite from 3.43.0 to 3.46.1 (2024-08-13) (#461) and (#477)
  • Explicitly =delete; Statement::bindNoCopy(…, std::string&&) (#469)

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged SQLiteCpp at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.