public void setAutoCommit(boolean autoCommit) throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method setAutoCommit() not yet implemented."); aCon.setAutoCommit(autoCommit); }
public boolean getAutoCommit() throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method getAutoCommit() not yet implemented."); return aCon.getAutoCommit(); }
public void commit() throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method commit() not yet implemented."); aCon.commit(); }
public void rollback() throws SQLException { /**@todo Implement this java.sql.Connection method*/ //throw new java.lang.UnsupportedOperationException("Method rollback() not yet implemented."); aCon.rollback(); }
public void close() throws SQLException { /**@todo Implement this java.sql.Connection method*/ //throw new java.lang.UnsupportedOperationException("Method close() not yet implemented."); if(DBConnectionPool.getCout()<=DBConnectionPool.getMinCount()) { inUse = false; }else { closeConnection(); }
}
public boolean isClosed() throws SQLException { /**@todo Implement this java.sql.Connection method*/ //throw new java.lang.UnsupportedOperationException("Method isClosed() not yet implemented."); return closed; }
public DatabaseMetaData getMetaData() throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method getMetaData() not yet implemented."); return aCon.getMetaData(); }
public void setReadOnly(boolean readOnly) throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method setReadOnly() not yet implemented."); aCon.setReadOnly(readOnly); }
public boolean isReadOnly() throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method isReadOnly() not yet implemented."); return isReadOnly(); }
public void setCatalog(String catalog) throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method setCatalog() not yet implemented."); aCon.setCatalog(catalog); }
public String getCatalog() throws SQLException { /**@todo Implement this java.sql.Connection method*/ //throw new java.lang.UnsupportedOperationException("Method getCatalog() not yet implemented."); return aCon.getCatalog(); }
public void setTransactionIsolation(int level) throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method setTransactionIsolation() not yet implemented."); aCon.setTransactionIsolation(level); }
public int getTransactionIsolation() throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method getTransactionIsolation() not yet implemented."); return aCon.getTransactionIsolation(); }
public SQLWarning getWarnings() throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method getWarnings() not yet implemented."); return aCon.getWarnings(); }
public void clearWarnings() throws SQLException { /**@todo Implement this java.sql.Connection method*/ //throw new java.lang.UnsupportedOperationException("Method clearWarnings() not yet implemented."); aCon.clearWarnings(); }
public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException { /**@todo Implement this java.sql.Connection method*/ // throw new java.lang.UnsupportedOperationException("Method createStatement() not yet implemented."); return aCon.createStatement(resultSetType, resultSetConcurrency); }