db_conn
v0.2.1-alpha
Database Connection API
|
▼Nvgi | |
▼Ndbconn | |
▼Ndbd | |
▼Nsqlite | |
Cconnection | 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 |
Cdriver | Sqlite driver class based on sqlite3 C++ library |
Cresult_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 |
Cstatement | 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 |
▼Nsybase | |
Cconnection | 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 |
Cdriver | Sybase ASE driver class based on ctlib sybase C library |
Cresult_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 |
Cstatement | 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 |
Cdriver | Driver is a singleton template class which creates a concrete driver on load() and returns its instance |
Cidriver | Idriver - is an interface for driver classes which declares function for creating a connection object |
▼Ndbi | |
Cconnection | Connection - is a class that manages native driver connection handle |
Ciconnection | Iconnection - is an interface that describes common functionality for all concrete native implementations for a connection class |
Ciresult_set | Iresult_set - is an interface that describes common functionality for all concrete native implementations for a result_set class |
Cistatement | Istatement - is an interface that describes common functionality for all concrete native implementations for a statement class |
Cresult_set | Result_set - is a class that manages native driver result_set handle |
Cstatement | Statement - is a class that manages native driver statement handle |