SSQLE
1.0
Simple SQL Editor
|
Interface providing facilities to connect to a relational database. More...
Public Member Functions | |
void | Open () |
Opens the connection to the databse. More... | |
void | Close () |
Closes previously opened connection to the databse. More... | |
QueryResult | ExecuteQuery (string query) |
Lets underlaying database execute the query and returns its results. More... | |
Interface providing facilities to connect to a relational database.
void SSQLE.IConnection.Close | ( | ) |
Closes previously opened connection to the databse.
Implemented in SSQLE.OracleConnection.
QueryResult SSQLE.IConnection.ExecuteQuery | ( | string | query | ) |
Lets underlaying database execute the query and returns its results.
query | Query to be passed to the databse for execution. |
Implemented in SSQLE.OracleConnection.
void SSQLE.IConnection.Open | ( | ) |
Opens the connection to the databse.
Implemented in SSQLE.OracleConnection.