Package oracle.spatial.util
Interface JDBCExtensionInterface
-
public interface JDBCExtensionInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
clearStatementCache(java.sql.Connection conn)
void
closeOracleConnection(oracle.jdbc.OracleConnection conn)
oracle.sql.ArrayDescriptor
getArrayDescriptor(java.lang.Object obj)
Deprecated.Use OracleConnection.createOracleArray(...);javax.sql.DataSource[]
getDataSource(java.lang.String... name)
JGeometry
getJGeometry(java.lang.Object obj)
oracle.sql.Datum[]
getOracleArray(java.lang.Object obj)
Deprecated.Use java.sql.Array array = resultSet.getArray(...);oracle.sql.Datum[]
getOracleAttributes(java.lang.Object obj)
Deprecated.Use java.sql.Struct.getAttributes();oracle.jdbc.OracleConnection
getOracleConnection(java.sql.Connection conn)
oracle.sql.StructDescriptor
getStructDescriptor(java.lang.Object obj)
oracle.xdb.XMLType
getXMLType(java.lang.Object obj)
Deprecated.Use SQLXML newXML = resultSet.getSQLXML(columnNumber);
-
-
-
Method Detail
-
getOracleConnection
oracle.jdbc.OracleConnection getOracleConnection(java.sql.Connection conn) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
clearStatementCache
void clearStatementCache(java.sql.Connection conn) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getJGeometry
JGeometry getJGeometry(java.lang.Object obj) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getOracleAttributes
oracle.sql.Datum[] getOracleAttributes(java.lang.Object obj) throws java.sql.SQLException
Deprecated.Use java.sql.Struct.getAttributes();- Parameters:
obj
-- Returns:
- Throws:
java.sql.SQLException
-
getStructDescriptor
oracle.sql.StructDescriptor getStructDescriptor(java.lang.Object obj) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getOracleArray
oracle.sql.Datum[] getOracleArray(java.lang.Object obj) throws java.sql.SQLException
Deprecated.Use java.sql.Array array = resultSet.getArray(...);- Parameters:
obj
-- Returns:
- Throws:
java.sql.SQLException
-
getArrayDescriptor
oracle.sql.ArrayDescriptor getArrayDescriptor(java.lang.Object obj) throws java.sql.SQLException
Deprecated.Use OracleConnection.createOracleArray(...);- Parameters:
obj
-- Returns:
- Throws:
java.sql.SQLException
-
closeOracleConnection
void closeOracleConnection(oracle.jdbc.OracleConnection conn) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
getDataSource
javax.sql.DataSource[] getDataSource(java.lang.String... name)
-
getXMLType
oracle.xdb.XMLType getXMLType(java.lang.Object obj) throws java.sql.SQLException
Deprecated.Use SQLXML newXML = resultSet.getSQLXML(columnNumber);- Parameters:
obj
-- Returns:
- Throws:
java.sql.SQLException
-
-