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

Quick Search    Search Deep

Uses of Interface
java.sql.Statement

Uses of Statement in java.sql
 

Subinterfaces of Statement in java.sql
 interface CallableStatement
          This interface provides a mechanism for calling stored procedures.
 interface PreparedStatement
          This interface provides a mechanism for executing pre-compiled statements.
 

Methods in java.sql that return Statement
 Statement ResultSet.getStatement()
          This method returns a the Statement that was used to produce this result set.
 Statement Connection.createStatement()
          This method creates a new SQL statement.
 Statement Connection.createStatement(int resultSetType, int resultSetConcurrency)
          This method creates a new SQL statement with the specified type and concurrency.
 Statement Connection.createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability)
          This method creates a new SQL statement with the specified type, concurrency and holdability, instead of using the defaults.