| java.lang.Object org.netbeans.modules.visualweb.dataconnectivity.sql.DesignTimeConnection
DesignTimeConnection | public class DesignTimeConnection implements Connection(Code) | | A design time only wrapper class for Connection objects. Used to
facilitate logging and to make design time connection pooling
possible in the future. Use getWrappedConnection() to get the
underlying Connection object.
author: John Kline |
Method Summary | |
public void | clearWarnings() | public void | close() | public void | commit() | public Array | createArrayOf(String typeName, Object[] elements) | public Blob | createBlob() | public Clob | createClob() | public NClob | createNClob() | public SQLXML | createSQLXML() | public Statement | createStatement() | public Statement | createStatement(int resultSetType, int resultSetConcurrency) | public Statement | createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public Struct | createStruct(String typeName, Object[] attributes) | public boolean | getAutoCommit() | public String | getCatalog() | public String | getClientInfo(String name) | public Properties | getClientInfo() | public int | getHoldability() | public DatabaseMetaData | getMetaData() | public int | getTransactionIsolation() | public Map | getTypeMap() | public SQLWarning | getWarnings() | public Connection | getWrappedConnection() | public boolean | isClosed() | public boolean | isReadOnly() | public boolean | isValid(int timeout) | public boolean | isWrapperFor(Class iface) | public String | nativeSQL(String sql) | public CallableStatement | prepareCall(String sql) | public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency) | public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public PreparedStatement | prepareStatement(String sql) | public PreparedStatement | prepareStatement(String sql, int autoGeneratedKeys) | public PreparedStatement | prepareStatement(String sql, int[] columnIndexes) | public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency) | public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public PreparedStatement | prepareStatement(String sql, String[] columnNames) | public void | releaseSavepoint(Savepoint savepoint) | public void | rollback() | public void | rollback(Savepoint savepoint) | public void | setAutoCommit(boolean autoCommit) | public void | setCatalog(String catalog) | public void | setClientInfo(String name, String value) | public void | setClientInfo(Properties properties) | public void | setHoldability(int holdability) | public void | setReadOnly(boolean readOnly) | public Savepoint | setSavepoint() | public Savepoint | setSavepoint(String name) | public void | setTransactionIsolation(int level) | public void | setTypeMap(Map map) | public String | toString() | public Object | unwrap(Class iface) |
createStatement | public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code) | | |
setTransactionIsolation | public void setTransactionIsolation(int level) throws SQLException(Code) | | |
|
|