org.asyrinx.brownie.jdbc.mockbase
クラス MockBaseConnection
java.lang.Object
org.asyrinx.brownie.jdbc.mockbase.MockBaseConnection
- すべての実装インタフェース:
- java.sql.Connection
- public class MockBaseConnection
- extends java.lang.Object
- implements java.sql.Connection
- 作成者:
- akima
インタフェース java.sql.Connection から継承したフィールド |
TRANSACTION_NONE, TRANSACTION_READ_COMMITTED, TRANSACTION_READ_UNCOMMITTED, TRANSACTION_REPEATABLE_READ, TRANSACTION_SERIALIZABLE |
メソッドの概要 |
void |
clearWarnings()
|
void |
close()
|
void |
commit()
|
java.sql.Statement |
createStatement()
|
java.sql.Statement |
createStatement(int resultSetType,
int resultSetConcurrency)
|
java.sql.Statement |
createStatement(int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
|
boolean |
getAutoCommit()
|
java.lang.String |
getCatalog()
|
int |
getHoldability()
|
java.sql.DatabaseMetaData |
getMetaData()
|
int |
getTransactionIsolation()
|
java.util.Map |
getTypeMap()
|
java.sql.SQLWarning |
getWarnings()
|
boolean |
isClosed()
|
boolean |
isReadOnly()
|
java.lang.String |
nativeSQL(java.lang.String sql)
|
java.sql.CallableStatement |
prepareCall(java.lang.String sql)
|
java.sql.CallableStatement |
prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
|
java.sql.CallableStatement |
prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
|
java.sql.PreparedStatement |
prepareStatement(java.lang.String sql)
|
java.sql.PreparedStatement |
prepareStatement(java.lang.String sql,
int autoGeneratedKeys)
|
java.sql.PreparedStatement |
prepareStatement(java.lang.String sql,
int[] columnIndexes)
|
java.sql.PreparedStatement |
prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
|
java.sql.PreparedStatement |
prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
|
java.sql.PreparedStatement |
prepareStatement(java.lang.String sql,
java.lang.String[] columnNames)
|
void |
releaseSavepoint(java.sql.Savepoint savepoint)
|
void |
rollback()
|
void |
rollback(java.sql.Savepoint savepoint)
|
void |
setAutoCommit(boolean autoCommit)
|
void |
setCatalog(java.lang.String catalog)
|
void |
setHoldability(int holdability)
|
void |
setReadOnly(boolean readOnly)
|
java.sql.Savepoint |
setSavepoint()
|
java.sql.Savepoint |
setSavepoint(java.lang.String name)
|
void |
setTransactionIsolation(int level)
|
void |
setTypeMap(java.util.Map map)
|
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MockBaseConnection
public MockBaseConnection()
clearWarnings
public void clearWarnings()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の clearWarnings
- 例外:
java.sql.SQLException
- 関連項目:
Connection.clearWarnings()
close
public void close()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の close
- 例外:
java.sql.SQLException
- 関連項目:
Connection.close()
commit
public void commit()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の commit
- 例外:
java.sql.SQLException
- 関連項目:
Connection.commit()
createStatement
public java.sql.Statement createStatement()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の createStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.createStatement()
createStatement
public java.sql.Statement createStatement(int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の createStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.createStatement(int, int, int)
createStatement
public java.sql.Statement createStatement(int resultSetType,
int resultSetConcurrency)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の createStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.createStatement(int, int)
getAutoCommit
public boolean getAutoCommit()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の getAutoCommit
- 例外:
java.sql.SQLException
- 関連項目:
Connection.getAutoCommit()
getCatalog
public java.lang.String getCatalog()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の getCatalog
- 例外:
java.sql.SQLException
- 関連項目:
Connection.getCatalog()
getHoldability
public int getHoldability()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の getHoldability
- 例外:
java.sql.SQLException
- 関連項目:
Connection.getHoldability()
getMetaData
public java.sql.DatabaseMetaData getMetaData()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の getMetaData
- 例外:
java.sql.SQLException
- 関連項目:
Connection.getMetaData()
getTransactionIsolation
public int getTransactionIsolation()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の getTransactionIsolation
- 例外:
java.sql.SQLException
- 関連項目:
Connection.getTransactionIsolation()
getTypeMap
public java.util.Map getTypeMap()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の getTypeMap
- 例外:
java.sql.SQLException
- 関連項目:
Connection.getTypeMap()
getWarnings
public java.sql.SQLWarning getWarnings()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の getWarnings
- 例外:
java.sql.SQLException
- 関連項目:
Connection.getWarnings()
isClosed
public boolean isClosed()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の isClosed
- 例外:
java.sql.SQLException
- 関連項目:
Connection.isClosed()
isReadOnly
public boolean isReadOnly()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の isReadOnly
- 例外:
java.sql.SQLException
- 関連項目:
Connection.isReadOnly()
nativeSQL
public java.lang.String nativeSQL(java.lang.String sql)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の nativeSQL
- 例外:
java.sql.SQLException
- 関連項目:
Connection.nativeSQL(java.lang.String)
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareCall
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareCall(java.lang.String, int, int, int)
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareCall
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareCall(java.lang.String, int, int)
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareCall
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareCall(java.lang.String)
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareStatement(java.lang.String, int, int,
int)
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareStatement(java.lang.String, int, int)
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
int autoGeneratedKeys)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareStatement(java.lang.String, int)
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
int[] columnIndexes)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareStatement(java.lang.String, int[])
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
java.lang.String[] columnNames)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareStatement(java.lang.String,
java.lang.String[])
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の prepareStatement
- 例外:
java.sql.SQLException
- 関連項目:
Connection.prepareStatement(java.lang.String)
releaseSavepoint
public void releaseSavepoint(java.sql.Savepoint savepoint)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の releaseSavepoint
- 例外:
java.sql.SQLException
- 関連項目:
Connection.releaseSavepoint(java.sql.Savepoint)
rollback
public void rollback()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の rollback
- 例外:
java.sql.SQLException
- 関連項目:
Connection.rollback()
rollback
public void rollback(java.sql.Savepoint savepoint)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の rollback
- 例外:
java.sql.SQLException
- 関連項目:
Connection.rollback(java.sql.Savepoint)
setAutoCommit
public void setAutoCommit(boolean autoCommit)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setAutoCommit
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setAutoCommit(boolean)
setCatalog
public void setCatalog(java.lang.String catalog)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setCatalog
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setCatalog(java.lang.String)
setHoldability
public void setHoldability(int holdability)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setHoldability
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setHoldability(int)
setReadOnly
public void setReadOnly(boolean readOnly)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setReadOnly
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setReadOnly(boolean)
setSavepoint
public java.sql.Savepoint setSavepoint()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setSavepoint
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setSavepoint()
setSavepoint
public java.sql.Savepoint setSavepoint(java.lang.String name)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setSavepoint
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setSavepoint(java.lang.String)
setTransactionIsolation
public void setTransactionIsolation(int level)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setTransactionIsolation
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setTransactionIsolation(int)
setTypeMap
public void setTypeMap(java.util.Map map)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Connection
内の setTypeMap
- 例外:
java.sql.SQLException
- 関連項目:
Connection.setTypeMap(java.util.Map)
Copyright © 2004 asyrinx organization. All Rights Reserved.