public interface OracleAgent
| 修飾子とタイプ | メソッドと説明 |
|---|---|
PhysicalConnectionDigger |
getPhysicalConnectionDigger() |
boolean |
isOracleArray(Object obj)
Is this object Oracle's ARRAY?
|
boolean |
isOracleStruct(Object obj)
Is this object Oracle's STRUCT?
|
Object |
toOracleArray(Connection conn,
String arrayTypeName,
Object arrayValue)
Convert an array value to the Oracle's ARRAY.
|
Object |
toOracleDate(Timestamp timestamp)
Convert the time-stamp to Oracle's date.
|
Object |
toOracleStruct(Connection conn,
String structTypeName,
Object[] attrs)
Convert the Oracle's STRUCT to a standard attributes.
|
Object |
toStandardArray(Object oracleArray)
Convert the Oracle's ARRAY to a standard array.
|
Object[] |
toStandardStructAttributes(Object oracleStruct)
Convert the Oracle's STRUCT to a standard attributes.
|
Object toOracleDate(Timestamp timestamp)
timestamp - The value of time-stamp. (NotNull)Object toOracleArray(Connection conn, String arrayTypeName, Object arrayValue) throws SQLException
conn - The Oracle native connection for the database. (NotNull)arrayTypeName - The name of ARRAY type for Oracle. (NotNull)arrayValue - The value of array. (NotNull)SQLException - When it fails to handle the connection or result valueObject toStandardArray(Object oracleArray) throws SQLException
oracleArray - The value of Oracle's ARRAY (oracle.sql.ARRAY). (NotNull)SQLException - When it fails to handle the connection or result valueboolean isOracleArray(Object obj)
obj - The doubtful instance. (NotNull)Object toOracleStruct(Connection conn, String structTypeName, Object[] attrs) throws SQLException
conn - The Oracle native connection for the database. (NotNull)structTypeName - The name of STRUCT type for Oracle. (NotNull)attrs - The array of attribute value. (NotNull)SQLException - When it fails to handle the connection or result valueObject[] toStandardStructAttributes(Object oracleStruct) throws SQLException
oracleStruct - The value of Oracle's STRUCT (oracle.sql.STRUCT). (NotNull)SQLException - When it fails to handle the connection or result valueboolean isOracleStruct(Object obj)
obj - The doubtful instance. (NotNull)PhysicalConnectionDigger getPhysicalConnectionDigger()
Copyright © 2014–2015 The DBFlute Project. All rights reserved.