Package oracle.spatial.util
Interface JDBCExtensionInterface
-
public interface JDBCExtensionInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidclearStatementCache(java.sql.Connection conn)voidcloseOracleConnection(oracle.jdbc.OracleConnection conn)oracle.sql.ArrayDescriptorgetArrayDescriptor(java.lang.Object obj)Deprecated.Use OracleConnection.createOracleArray(...);javax.sql.DataSource[]getDataSource(java.lang.String... name)JGeometrygetJGeometry(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.OracleConnectiongetOracleConnection(java.sql.Connection conn)oracle.sql.StructDescriptorgetStructDescriptor(java.lang.Object obj)oracle.xdb.XMLTypegetXMLType(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.SQLExceptionDeprecated.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.SQLExceptionDeprecated.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.SQLExceptionDeprecated.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.SQLExceptionDeprecated.Use SQLXML newXML = resultSet.getSQLXML(columnNumber);- Parameters:
obj-- Returns:
- Throws:
java.sql.SQLException
-
-