db_conn
v0.2.1-alpha
Database Connection API
|
statement - is a class that implements dbi::istatement interface and represents native database statement structure, in case of sqlite it's a C++ wrap around sqlite3_stmt that also contains result set structure. More...
#include <sqlite_driver.hpp>
statement - is a class that implements dbi::istatement interface and represents native database statement structure, in case of sqlite it's a C++ wrap around sqlite3_stmt that also contains result set structure.
statement object cannot be instantiated directly, only via connection get_statement() function call. statement objects automatically cancel executed queries and destroy result set as they go out of scope.
Definition at line 777 of file sqlite_driver.hpp.