140141142143144145146147
throws DatabaseException { try { return con.createStatement(resultSetType, resultSetConcurrency, resultSetHoldability); } catch (SQLException e) { throw new DatabaseException(e); } }
149150151152153154155156
public Statement createStatement(int resultSetType, int resultSetConcurrency) throws DatabaseException { try { return con.createStatement(resultSetType, resultSetConcurrency); } catch (SQLException e) { throw new DatabaseException(e); } }
158159160161162163164165
@Override public boolean getAutoCommit() throws DatabaseException { try { return con.getAutoCommit(); } catch (SQLException e) { throw new DatabaseException(e); } }
167168169170171172173174
@Override public String getCatalog() throws DatabaseException { try { return con.getCatalog(); } catch (SQLException e) { throw new DatabaseException(e); } }
175176177178179180181182
public int getHoldability() throws DatabaseException { try { return con.getHoldability(); } catch (SQLException e) { throw new DatabaseException(e); } }
183184185186187188189190
public DatabaseMetaData getMetaData() throws DatabaseException { try { return con.getMetaData(); } catch (SQLException e) { throw new DatabaseException(e); } }
191192193194195196197198
public int getTransactionIsolation() throws DatabaseException { try { return con.getTransactionIsolation(); } catch (SQLException e) { throw new DatabaseException(e); } }
199200201202203204205206
public Map<String, Class<?>> getTypeMap() throws DatabaseException { try { return con.getTypeMap(); } catch (SQLException e) { throw new DatabaseException(e); } }
207208209210211212213214
public SQLWarning getWarnings() throws DatabaseException { try { return con.getWarnings(); } catch (SQLException e) { throw new DatabaseException(e); } }
216217218219220221222223
@Override public boolean isClosed() throws DatabaseException { try { return con.isClosed(); } catch (SQLException e) { throw new DatabaseException(e); } }