|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||
java.lang.Objectorg.apache.commons.dbutils.ProxyFactory
public class ProxyFactory
Creates proxy implementations of JDBC interfaces. This avoids incompatibilities between the JDBC 2 and JDBC 3 interfaces. This class is thread safe.
Proxy,
InvocationHandler| メソッドの概要 | |
|---|---|
java.sql.CallableStatement |
createCallableStatement(java.lang.reflect.InvocationHandler handler)
Creates a new proxy CallableStatement object. |
java.sql.Connection |
createConnection(java.lang.reflect.InvocationHandler handler)
Creates a new proxy Connection object. |
java.sql.Driver |
createDriver(java.lang.reflect.InvocationHandler handler)
Creates a new proxy Driver object. |
java.sql.PreparedStatement |
createPreparedStatement(java.lang.reflect.InvocationHandler handler)
Creates a new proxy PreparedStatement object. |
java.sql.ResultSet |
createResultSet(java.lang.reflect.InvocationHandler handler)
Creates a new proxy ResultSet object. |
java.sql.ResultSetMetaData |
createResultSetMetaData(java.lang.reflect.InvocationHandler handler)
Creates a new proxy ResultSetMetaData object. |
java.sql.Statement |
createStatement(java.lang.reflect.InvocationHandler handler)
Creates a new proxy Statement object. |
static ProxyFactory |
instance()
Returns the Singleton instance of this class. |
| クラス java.lang.Object から継承されたメソッド |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| メソッドの詳細 |
|---|
public static ProxyFactory instance()
public java.sql.CallableStatement createCallableStatement(java.lang.reflect.InvocationHandler handler)
CallableStatement object.
handler - The handler that intercepts/overrides method calls.
public java.sql.Connection createConnection(java.lang.reflect.InvocationHandler handler)
Connection object.
handler - The handler that intercepts/overrides method calls.
public java.sql.Driver createDriver(java.lang.reflect.InvocationHandler handler)
Driver object.
handler - The handler that intercepts/overrides method calls.
public java.sql.PreparedStatement createPreparedStatement(java.lang.reflect.InvocationHandler handler)
PreparedStatement object.
handler - The handler that intercepts/overrides method calls.
public java.sql.ResultSet createResultSet(java.lang.reflect.InvocationHandler handler)
ResultSet object.
handler - The handler that intercepts/overrides method calls.
public java.sql.ResultSetMetaData createResultSetMetaData(java.lang.reflect.InvocationHandler handler)
ResultSetMetaData object.
handler - The handler that intercepts/overrides method calls.
public java.sql.Statement createStatement(java.lang.reflect.InvocationHandler handler)
Statement object.
handler - The handler that intercepts/overrides method calls.
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||