Tags give the ability to mark specific points in history as being important
-
2.0.0
434299d5 · ·Use update hook per table This is a breaking change, instead of a database wide update hook for a database connection, one per table is added. The ability to listen on all tables is given by the table name "*". The interface of `cqlite::Database` has changed so that instead of setting the update hook with `setUpdateHook` `addUpdateHook` is used in order to set the update hook for a single table (or all tables if "*" is given).
-
1.3.1
689c434c · ·Incomplete move assignment / default constructor The move assignment operator and constructor were incomplete, leading to crashes because the pointer of the "old" database was still registered in the sqlite update hook. Without a default constructor the usage of the move assignment is rather theoretical, it has been added to allow workflows with default constructed database instances.