Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.sql.Array

Uses of Array in java.sql
 

Methods in java.sql that return Array
 Array SQLInput.readArray()
          This method reads the next item from the stream a Java SQL Array.
 Array ResultSet.getArray(int columnIndex)
          This method returns the specified column value as an Array.
 Array ResultSet.getArray(java.lang.String columnName)
          This method returns the specified column value as an Array.
 Array CallableStatement.getArray(int index)
          This method returns the value of the specified parameter as a Java Array.
 Array CallableStatement.getArray(java.lang.String name)
          This method returns the value of the specified parameter as a Java Array.
 

Methods in java.sql with parameters of type Array
 void SQLOutput.writeArray(Array value)
          This method writes the specified Java SQL Array object to the SQL stream.
 void ResultSet.updateArray(int columnIndex, Array value)
          This method updates the specified column to have a java.sqlArray value.
 void ResultSet.updateArray(java.lang.String columnName, Array value)
          This method updates the specified column to have a java.sqlArray value.
 void PreparedStatement.setArray(int index, Array value)
          This method sets the specified parameter from the given Java Array value.