SQLiteCpp icon indicating copy to clipboard operation
SQLiteCpp copied to clipboard

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

Results 94 SQLiteCpp issues
Sort by recently updated
recently updated
newest added

Fix #430 for a better support of standard containers Also add a couple of tests (not covering all variants)

enhancement

Add support for using char8_t, char16_t, wchar_t, u8string, u16string & wstring when available. wchar_t & wstring support are only available on platforms with a 2 byte wchar_t. Usable to create...

bug
enhancement

### What I'm trying to implement: - Iterators - [x] [InputIterator](https://en.cppreference.com/w/cpp/named_req/InputIterator) for SQLite::Statement with auto-reset on **begin()** - [x] [BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator) for SQLite::Row. Should be [RandomAccessIterator](https://en.cppreference.com/w/cpp/named_req/RandomAccessIterator) but this is too much...

enhancement

With this patch, it is possible to bind `string_view`, which addresses PR #298.

Greetings @SRombauts or maintainer whom it may concern I have an [interesting use case](https://github.com/mlin/sqlite_zstd_vfs/) in which I want to use SQLiteCpp's convenient API *within the implementation* of a [SQLite3 loadable...

I'm trying to attach a database and for the life of me: i cannot get it to work. My first issue: Is it correct that you're not allowed to have...

question
help-wanted