API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.sql. Array View Source
Author(s)
Since
1.2
Version
Serial
Hierarchy
 Array
Subinterfaces
Description
public interface Array
  The mapping in the Java programming language for the SQL type ARRAY.
See also:   
Methods
Hide/Show inherited methods
public void free () throws SQLException
  This method frees the Array object and releases the resources that it holds.
public Object getArray () throws SQLException
  Retrieves the contents of the SQL ARRAY value designated by this Array object in the form of an array in the Java programming language.
public Object getArray (long index, int count) throws SQLException
  Retrieves a slice of the SQL ARRAY value designated by this Array object, beginning with the specified index and containing up to count successive elements of the SQL array.
public Object getArray (long index, int count, Map<String, Class<Object>> map) throws SQLException
  Retreives a slice of the SQL ARRAY value designated by this Array object, beginning with the specified index and containing up to count successive elements of the SQL array.
public Object getArray (Map<String, Class<Object>> map) throws SQLException
  Retrieves the contents of the SQL ARRAY value designated by this Array object.
public int getBaseType () throws SQLException
  Retrieves the JDBC type of the elements in the array designated by this Array object.
public String getBaseTypeName () throws SQLException
  Retrieves the SQL type name of the elements in the array designated by this Array object.
public ResultSet getResultSet () throws SQLException
  Retrieves a result set that contains the elements of the SQL ARRAY value designated by this Array object.
public ResultSet getResultSet (long index, int count) throws SQLException
  Retrieves a result set holding the elements of the subarray that starts at index index and contains up to count successive elements.
public ResultSet getResultSet (long index, int count, Map<String, Class<Object>> map) throws SQLException
  Retrieves a result set holding the elements of the subarray that starts at index index and contains up to count successive elements.
public ResultSet getResultSet (Map<String, Class<Object>> map) throws SQLException
  Retrieves a result set that contains the elements of the SQL ARRAY value designated by this Array object.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar