パッケージ com.handywedge.db
インタフェース FWFullConnection
-
- すべてのスーパーインタフェース:
FWConnection
public interface FWFullConnection extends FWConnection
フレームワーク内部で使用するインターフェースです。
アプリケーションでは使用しないで下さい。
-
-
フィールドの概要
フィールド 修飾子とタイプ フィールド 説明 static intTRANSACTION_NONEstatic intTRANSACTION_READ_COMMITTEDstatic intTRANSACTION_READ_UNCOMMITTEDstatic intTRANSACTION_REPEATABLE_READstatic intTRANSACTION_SERIALIZABLE
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 voidabort(Executor executor)voidclearWarnings()voidclose()voidcommit()FWStatementcreateStatement(int resultSetType, int resultSetConcurrency)FWStatementcreateStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability)booleangetAutoCommit()StringgetCatalog()PropertiesgetClientInfo()StringgetClientInfo(String name)intgetHoldability()DatabaseMetaDatagetMetaData()intgetNetworkTimeout()StringgetSchema()intgetTransactionIsolation()Map<String,Class<?>>getTypeMap()SQLWarninggetWarnings()booleanisClosed()booleanisReadOnly()booleanisValid(int timeout)FWCallableStatementprepareCall(String sql, int resultSetType, int resultSetConcurrency)FWCallableStatementprepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)FWPreparedStatementprepareStatement(String sql, int[] columnIndexes)FWPreparedStatementprepareStatement(String sql, int resultSetType, int resultSetConcurrency)FWPreparedStatementprepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)FWPreparedStatementprepareStatement(String sql, String[] columnNames)voidreleaseSavepoint(Savepoint savepoint)voidrollback()voidrollback(Savepoint savepoint)voidsetAutoCommit(boolean autoCommit)voidsetCatalog(String catalog)voidsetClientInfo(String name, String value)voidsetClientInfo(Properties properties)voidsetHoldability(int holdability)voidsetNetworkTimeout(Executor executor, int milliseconds)voidsetReadOnly(boolean readOnly)SavepointsetSavepoint()SavepointsetSavepoint(String name)voidsetSchema(String schema)voidsetTransactionIsolation(int level)voidsetTypeMap(Map<String,Class<?>> map)-
インタフェースから継承されたメソッド com.handywedge.db.FWConnection
createArrayOf, createBlob, createClob, createNClob, createSQLXML, createStatement, createStruct, nativeSQL, prepareCall, prepareStatement, prepareStatement
-
-
-
-
フィールドの詳細
-
TRANSACTION_NONE
static final int TRANSACTION_NONE
- 関連項目:
- 定数フィールド値
-
TRANSACTION_READ_UNCOMMITTED
static final int TRANSACTION_READ_UNCOMMITTED
- 関連項目:
- 定数フィールド値
-
TRANSACTION_READ_COMMITTED
static final int TRANSACTION_READ_COMMITTED
- 関連項目:
- 定数フィールド値
-
TRANSACTION_REPEATABLE_READ
static final int TRANSACTION_REPEATABLE_READ
- 関連項目:
- 定数フィールド値
-
TRANSACTION_SERIALIZABLE
static final int TRANSACTION_SERIALIZABLE
- 関連項目:
- 定数フィールド値
-
-
メソッドの詳細
-
setAutoCommit
void setAutoCommit(boolean autoCommit) throws SQLException- 例外:
SQLException
-
getAutoCommit
boolean getAutoCommit() throws SQLException- 例外:
SQLException
-
commit
void commit() throws SQLException- 例外:
SQLException
-
rollback
void rollback() throws SQLException- 例外:
SQLException
-
close
void close() throws SQLException- 例外:
SQLException
-
isClosed
boolean isClosed() throws SQLException- 例外:
SQLException
-
getMetaData
DatabaseMetaData getMetaData() throws SQLException
- 例外:
SQLException
-
setReadOnly
void setReadOnly(boolean readOnly) throws SQLException- 例外:
SQLException
-
isReadOnly
boolean isReadOnly() throws SQLException- 例外:
SQLException
-
setCatalog
void setCatalog(String catalog) throws SQLException
- 例外:
SQLException
-
getCatalog
String getCatalog() throws SQLException
- 例外:
SQLException
-
setTransactionIsolation
void setTransactionIsolation(int level) throws SQLException- 例外:
SQLException
-
getTransactionIsolation
int getTransactionIsolation() throws SQLException- 例外:
SQLException
-
getWarnings
SQLWarning getWarnings() throws SQLException
- 例外:
SQLException
-
clearWarnings
void clearWarnings() throws SQLException- 例外:
SQLException
-
createStatement
FWStatement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException
- 例外:
SQLException
-
prepareStatement
FWPreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException
- 例外:
SQLException
-
prepareCall
FWCallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException
- 例外:
SQLException
-
getTypeMap
Map<String,Class<?>> getTypeMap() throws SQLException
- 例外:
SQLException
-
setTypeMap
void setTypeMap(Map<String,Class<?>> map) throws SQLException
- 例外:
SQLException
-
setHoldability
void setHoldability(int holdability) throws SQLException- 例外:
SQLException
-
getHoldability
int getHoldability() throws SQLException- 例外:
SQLException
-
setSavepoint
Savepoint setSavepoint() throws SQLException
- 例外:
SQLException
-
setSavepoint
Savepoint setSavepoint(String name) throws SQLException
- 例外:
SQLException
-
rollback
void rollback(Savepoint savepoint) throws SQLException
- 例外:
SQLException
-
releaseSavepoint
void releaseSavepoint(Savepoint savepoint) throws SQLException
- 例外:
SQLException
-
createStatement
FWStatement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException
- 例外:
SQLException
-
prepareStatement
FWPreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException
- 例外:
SQLException
-
prepareCall
FWCallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException
- 例外:
SQLException
-
prepareStatement
FWPreparedStatement prepareStatement(String sql, int[] columnIndexes) throws SQLException
- 例外:
SQLException
-
prepareStatement
FWPreparedStatement prepareStatement(String sql, String[] columnNames) throws SQLException
- 例外:
SQLException
-
isValid
boolean isValid(int timeout) throws SQLException- 例外:
SQLException
-
setClientInfo
void setClientInfo(String name, String value) throws SQLClientInfoException
-
setClientInfo
void setClientInfo(Properties properties) throws SQLClientInfoException
-
getClientInfo
String getClientInfo(String name) throws SQLException
- 例外:
SQLException
-
getClientInfo
Properties getClientInfo() throws SQLException
- 例外:
SQLException
-
setSchema
void setSchema(String schema) throws SQLException
- 例外:
SQLException
-
getSchema
String getSchema() throws SQLException
- 例外:
SQLException
-
abort
void abort(Executor executor) throws SQLException
- 例外:
SQLException
-
setNetworkTimeout
void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException
- 例外:
SQLException
-
getNetworkTimeout
int getNetworkTimeout() throws SQLException- 例外:
SQLException
-
-