パッケージ com.handywedge.db
インタフェース FWConnection
-
- 既知のサブインタフェースのリスト:
FWFullConnection
public interface FWConnectionConnectionのラッパーインターフェースです。
DBへアクセスを行うにはFWConnectionManagerからFWConnectionインスタンスを取得してアクセスします。- 関連項目:
FWConnectionManager,Connection
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 ArraycreateArrayOf(String typeName, Object[] elements)BlobcreateBlob()ClobcreateClob()NClobcreateNClob()SQLXMLcreateSQLXML()FWStatementcreateStatement()StructcreateStruct(String typeName, Object[] attributes)StringnativeSQL(String sql)FWCallableStatementprepareCall(String sql)FWPreparedStatementprepareStatement(String sql)FWPreparedStatementprepareStatement(String sql, int autoGeneratedKeys)
-
-
-
メソッドの詳細
-
createStatement
FWStatement createStatement() throws SQLException
- 例外:
SQLException
-
prepareStatement
FWPreparedStatement prepareStatement(String sql) throws SQLException
- 例外:
SQLException
-
prepareStatement
FWPreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException
- 例外:
SQLException
-
prepareCall
FWCallableStatement prepareCall(String sql) throws SQLException
- 例外:
SQLException
-
nativeSQL
String nativeSQL(String sql) throws SQLException
- 例外:
SQLException
-
createClob
Clob createClob() throws SQLException
- 例外:
SQLException
-
createBlob
Blob createBlob() throws SQLException
- 例外:
SQLException
-
createNClob
NClob createNClob() throws SQLException
- 例外:
SQLException
-
createSQLXML
SQLXML createSQLXML() throws SQLException
- 例外:
SQLException
-
createArrayOf
Array createArrayOf(String typeName, Object[] elements) throws SQLException
- 例外:
SQLException
-
createStruct
Struct createStruct(String typeName, Object[] attributes) throws SQLException
- 例外:
SQLException
-
-