DbConnection

Represents a connection to a real database.

Methods
void commit()
void commit() throws SQLException
void connect()
void connect() throws Exception
void createIndex(Index index)
void createIndex(Index index) throws SQLException
void createTable(Table table)
void createTable(Table table) throws SQLException
Result delete(Table table, String condition)
Result delete(Table table, String condition) throws SQLException
void disconnect()
void disconnect() throws SQLException
void dropIndex(Index index)
void dropIndex(Index index) throws SQLException
void dropTable(Table table)
void dropTable(Table table) throws SQLException
void end()
void end() throws SQLException
Result insert(Table table, Column[] c, Value[] v)
Result insert(Table table, Column[] c, Value[] v) throws SQLException
void reset()
void reset() throws SQLException
void rollback()
void rollback() throws SQLException
Result select(String sql)
Result select(String sql) throws SQLException
void setAutoCommit(boolean b)
void setAutoCommit(boolean b) throws SQLException
String toString()
String toString()
Result update(Table table, Column[] columns, Value[] values, String condition)
Result update(Table table, Column[] columns, Value[] values, String condition) throws SQLException