db_conn  v0.2.1-alpha
Database Connection API
Class Hierarchy

Go to the graphical class hierarchy

This inheritance list is sorted roughly, but not completely, alphabetically:
[detail level 12]
 Cvgi::dbconn::dbi::connectionConnection - 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::iconnectionIconnection - is an interface that describes common functionality for all concrete native implementations for a connection class
 Cvgi::dbconn::dbd::sqlite::connectionConnection - 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::connectionConnection - 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::idriverIdriver - is an interface for driver classes which declares function for creating a connection object
 Cvgi::dbconn::dbd::sqlite::driverSqlite driver class based on sqlite3 C++ library
 Cvgi::dbconn::dbd::sybase::driverSybase ASE driver class based on ctlib sybase C library
 Cvgi::dbconn::dbi::iresult_setIresult_set - is an interface that describes common functionality for all concrete native implementations for a result_set class
 Cvgi::dbconn::dbd::sqlite::result_setResult_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_setResult_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::istatementIstatement - is an interface that describes common functionality for all concrete native implementations for a statement class
 Cvgi::dbconn::dbd::sqlite::statementStatement - 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::statementStatement - 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_setResult_set - is a class that manages native driver result_set handle
 Cvgi::dbconn::dbi::statementStatement - is a class that manages native driver statement handle