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

Quick Search    Search Deep

Uses of Interface
java.sql.Clob

Uses of Clob in java.sql
 

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

Methods in java.sql with parameters of type Clob
 void SQLOutput.writeClob(Clob value)
          This method writes the specified Java SQL Clob object to the SQL stream.
 void ResultSet.updateClob(int columnIndex, Clob value)
          This method updates the specified column to have a java.sql.Clob value.
 void ResultSet.updateClob(java.lang.String columnName, Clob value)
          This method updates the specified column to have a java.sql.Clob value.
 void PreparedStatement.setClob(int index, Clob value)
          This method sets the specified parameter from the given Java Clob value.
 long Clob.position(Clob pattern, long start)
          This method returns the index into this Clob of the first occurrence of the specified character pattern (supplied by the caller as a Clob).