Uses of Class
oracle.sql.ARRAY
-
Packages that use ARRAY Package Description oracle.jdbc Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the packageoracle.jdbc
.oracle.sql A package of classes that represent java SQL types and Oracle specific SQL types. -
-
Uses of ARRAY in oracle.jdbc
Methods in oracle.jdbc that return ARRAY Modifier and Type Method Description ARRAY
OracleConnection. createARRAY(String typeName, Object elements)
Creates an ARRAY object with the given type name and elements.ARRAY
OracleConnectionWrapper. createARRAY(String typeName, Object elements)
Creates an ARRAY object with the given type name and elements.ARRAY
OracleCallableStatement. getARRAY(int parameterIndex)
Retrieves data into anoracle.sql.ARRAY
object.ARRAY
OracleResultSet. getARRAY(int columnIndex)
Oracle extension.ARRAY
OracleResultSet. getARRAY(String columnName)
Oracle extension.Methods in oracle.jdbc with parameters of type ARRAY Modifier and Type Method Description void
OracleCallableStatement. setARRAY(String parameterName, ARRAY x)
Sets the designated parameter to anoracle.sql.ARRAY
value.void
OraclePreparedStatement. setARRAY(int parameterIndex, ARRAY arr)
Binds the designated parameter to aoracle.sql.ARRAY
.void
OraclePreparedStatement. setARRAYAtName(String parameterName, ARRAY value)
Sets the designated parameter to aoracle.sql.ARRAY
value.void
OracleResultSet. updateARRAY(int columnIndex, ARRAY value)
Oracle extension.void
OracleResultSet. updateARRAY(String columnName, ARRAY value)
Oracle extension. -
Uses of ARRAY in oracle.sql
Methods in oracle.sql with parameters of type ARRAY Modifier and Type Method Description ResultSet
ArrayDescriptor. toResultSet(ARRAY array, long index, int count, Map map, boolean saveLocalCopy)
Deprecated.
-