|
|||||||||
| Home >> All >> java >> [ sql overview ] | PREV NEXT | ||||||||
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. |
|
|||||||||
| Home >> All >> java >> [ sql overview ] | PREV NEXT | ||||||||