All Versions
10
Latest Version
3.2
Avg Release Cycle
108 days
Latest Release
2736 days ago

Changelog History

  • v3.2 Changes

    May 13, 2017

    Features:

    ๐Ÿ›  Fixes:

    • Convert UTF-16 statements to UTF-8 #91 Thanks to @zauguin
    • Fixed reexecution of statements #97 Thanks to @Killili
    • Diagnose attempts to execute multistatements #100 Thanks to @zauguin
    • Fix exceptions so they can be caught by const reference #102 Thanks to @cbeiraod
    • Support all integer types #104 Thanks to @zauguin
    • Fix for readme markdown #106 Thanks to @bryant1410
    • Fix C++14 flag in configure.ac #107 Thanks to @EarthlingKira

    Many thanks to all great contributors of the project ;)

  • v3.1 Changes

    February 17, 2017

    Fixes:

    • Fix build for modern standard libraries #90 Thanks to @zauguin
  • v3.0 Changes

    February 17, 2017

    Features:

    • Support lvalue functors for operator >> #60
    • Support for std::vector allocator #76 Thanks to @zauguin
    • Expose error codes in exceptions #80 Thanks to @zauguin
    • Use std::uncaught_exceptions if possible #86 Thanks to @zauguin
    • SQLCipher support #77 Thanks to @zauguin
    • Support for custom SQL functions #89 Thanks to @zauguin
    • Include SQL statement in exception #85 Thanks to @zauguin

    ๐Ÿ›  Fixes:

    • Fixed Bad database_binder destructor behavior #63 Thanks to @polesapart
    • Throw dedicated exceptions for no_rows and more_rows#62 Thanks to @ulrichbayer
    • Fixed sqlite memory leak on failed open #65 Thanks to @polesapart

    โšก๏ธ You can find more info in the updated README file.

    ๐Ÿ’ฅ Breaking changes:

    • Databases with non-ASCII characters in their names created with v1.x & v2.x are not found by this version. You have to manually rename them to their actual (UTF-8 encoded) name.
  • v2.4 Changes

    July 05, 2016

    Fixes:

  • v2.3 Changes

    June 24, 2016

    Fixes:

    • โšก๏ธ Updated sqlite version to 3.12.0
    • Added forgotten operator << overload #46
    • Added support for nullptr and uniqueptr<T> and deprecated boost::optional. #52
    • Fixed exceptions terminating the program #53

    โšก๏ธ You can find more info in the updated README file.

    ๐Ÿ’ฅ Breaking changes:

    • prepared statements are not uniqueptr<database_binder> anymore, they are plain database_binder instances.
      so instead of prepared_statment->reset() you should write prepared_statement.reset().
    • ๐Ÿ—„ boost_optional<T> is deprecated, we will replace this with std::experimental::optional<T> when enough compilers support it.
  • v2.2 Changes

    March 26, 2016

    Fixes:
    1- prevent prepared-statements from executing again when they go out of scope #34
    2- fix multiple definition of sqlite::database_binder #15
    3- support functors in addition to lambdas #11

  • v2.1 Changes

    February 11, 2016

    Changes:

    • ๐Ÿ‘ blob support with std::vector<T>

    ๐Ÿ›  Fixes:

  • v2.0 Changes

    January 24, 2016

    Changes:
    1- handling lambda with any number of arguments (thanks to @KnairdA)
    ๐Ÿ‘ 2- boost optional support (thanks to @Killili)
    3- prepared statements (thanks to @Killili)
    4- shared db connection (thanks to @Killili)
    โœ… 5- automated project tests with drone.io (thanks to @edrosten)
    6- extracting data to std::touple (thanks to @edrosten)
    ๐Ÿ‘ป 7- better exception handling (thanks to @edrosten)

    Many thanks to all great contributors of the project ;)

  • v1.4 Changes

    March 24, 2015

    ๐Ÿ›  fixes hidden bug when binding std::string field.
    ๐Ÿ‘ replace std::wstring with std::u16string (sqlite3 supports utf16 and utf8 strings).

    note :this release is also tested on clang 3.4 and android ndk .

  • v1.3 Changes

    September 17, 2014
    • c++11 namespace fix
    • โš  g++ general warnings fix
    • ~database_binder executing a done statement takes a lot of time

    thanks to (https://github.com/Killili)