getArray(int)
JDK Doc(JAVA)Download this dictionary
getArray(int) *2
- Method in interface java.sql.CallableStatement 
public Array getArray (int i) throws SQLException 
JDBC 2.0 Gets the value of a JDBC ARRAY parameter as an Array object in the Java programming language.Parameters: i - the first parameter is 1, the second is 2, and so onReturns: the parameter value as an Array object in the Java programming language. If the value was SQL NULL, the value null is returned.Throws: SQLException - if a database access error occurs
 
getArray(int)
- Method in interface java.sql.ResultSet 
public Array getArray (int i) throws SQLException 
JDBC 2.0 Gets an SQL ARRAY value from the current row of this ResultSet object.Parameters: i - the first column is 1, the second is 2, ...Returns: an Array object representing the SQL ARRAY value in the specified column