 sq3::cursor | This type is for stepping through a db query result |
 sq3::database | Encapsulates a connection to an sqlite database |
  sq3::log_db | Log_db is a simple logging database for use with arbitrary applications |
  sq3::settings_db | Settings_db ia a very simplistic key/value pair database for use with the sq3 database layer |
 refcount::no_delete_finalizer | A no-op "destructor" for use with rcptr |
 refcount::plain_delete_finalizer | The default destructor/cleanup functor for use with rcptr<> |
 refcount::rcptr< HandleT, FinalizerT > | A bare-bones non-intrusive reference-counted pointer type with the ability for the client to specify a finalization/destruction functor for the pointed-to type |
 refcount::rcptr< sq3::statement, sq3::statement_reset_finalizer > | |
 refcount::rcptr< sqlite3, sq3::sqlite3_finalizer > | |
 refcount::rcptr< sqlite3_stmt, sq3::sqlite3_stmt_finalizer > | |
 refcount::Detail::ref_type< T > | Internal detail for dereferencing pointers |
 refcount::Detail::ref_type< void > | Internal detail for dereferencing pointers |
 sq3::sqlite3_finalizer | A specialized dtor to close sqlite3 handles, for use with refcount::rcptr<sqlite3,sqlite3_finalizer > |
 sq3::sqlite3_stmt_finalizer | A specialized dtor to finalize sqlite3_stmt handles, for use with refcount::rcptr<sqlite3,sqlite3_stmt_finalizer> |
 sq3::sqlite3_stmt_reset_finalizer | A specialized dtor to call reset sqlite3_stmt handles(), for use with refcount::rcptr<sqlite3,sqlite3_stmt_reset_finalizer> |
 sq3::statement | This class represents a prepared database statement |
 sq3::statement_reset_finalizer | A specialized dtor to reset (not close) sq3::statement objects, for use with refcount::rcptr<sqlite3,statement_reset_finalizer> |
 sq3::transaction | This type represents a transaction block in an SQL session |