db_conn
v0.2.1-alpha
Database Connection API
|
Cvgi::dbconn::dbi::connection | Connection - is a class that manages native driver connection handle |
Cvgi::dbconn::dbd::driver< T > | Driver is a singleton template class which creates a concrete driver on load() and returns its instance |
▼Cvgi::dbconn::dbi::iconnection | Iconnection - is an interface that describes common functionality for all concrete native implementations for a connection class |
Cvgi::dbconn::dbd::sqlite::connection | Connection - is a class that implements dbi::iconnection interface and represents native database connection handle, in case of sqlite it's a C++ wrap around around sqlite3 |
Cvgi::dbconn::dbd::sybase::connection | Connection - is a class that implements dbi::iconnection interface and represents native database connection handle, in case of Sybase it's a C++ wrap around around CS_CONTEXT and CS_CONNECTION |
▼Cvgi::dbconn::dbd::idriver | Idriver - is an interface for driver classes which declares function for creating a connection object |
Cvgi::dbconn::dbd::sqlite::driver | Sqlite driver class based on sqlite3 C++ library |
Cvgi::dbconn::dbd::sybase::driver | Sybase ASE driver class based on ctlib sybase C library |
▼Cvgi::dbconn::dbi::iresult_set | Iresult_set - is an interface that describes common functionality for all concrete native implementations for a result_set class |
Cvgi::dbconn::dbd::sqlite::result_set | Result_set - is a class that implements dbi::iresult_set interface and represents results of SQL query execution with collection of helper function to make the retrieval of the results of a query execution an easy task |
Cvgi::dbconn::dbd::sybase::result_set | Result_set - is a class that implements dbi::iresult_set interface and represents results of SQL query execution with collection of helper function to make the retrieval of the results of a query execution an easy task |
▼Cvgi::dbconn::dbi::istatement | Istatement - is an interface that describes common functionality for all concrete native implementations for a statement class |
Cvgi::dbconn::dbd::sqlite::statement | 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 |
Cvgi::dbconn::dbd::sybase::statement | Statement - is a class that implements dbi::istatement interface and represents native database statement structure, in case of Sybase it's a C++ wrap around CS_COMMAND that also contains result set structure |
Cvgi::dbconn::dbi::result_set | Result_set - is a class that manages native driver result_set handle |
Cvgi::dbconn::dbi::statement | Statement - is a class that manages native driver statement handle |