#include <Connection.h>
Inheritance diagram for Connection:
Public Member Functions | |
Connection () | |
Connection constructor. | |
virtual | ~Connection () |
Connection destructor. | |
virtual void | connect (string aString)=0 |
Permit to be connected to a databse. | |
virtual list< list< string > > | executeQuery (string aQuery)=0 |
Permit to execute a query to the database. | |
virtual int | executeUpdate (string aQuery)=0 |
Permit to execute an update to the database. | |
virtual void | closeConnection ()=0 |
Permit to close the connection with the database. |
|
Permit to be connected to a databse.
Implemented in PGConnection. |
|
Permit to execute a query to the database.
Implemented in PGConnection. |
|
Permit to execute an update to the database.
Implemented in PGConnection. |