Uses of Interface
java.sql.PreparedStatement
| Package | Description |
|---|---|
| java.sql | |
| javax.sql | |
| SQLite.JDBC2z |
-
Uses of PreparedStatement in java.sql
Subinterfaces of PreparedStatement in java.sql Modifier and Type Interface Description interfaceCallableStatementAn interface used to call Stored Procedures.Methods in java.sql that return PreparedStatement Modifier and Type Method Description PreparedStatementConnection. prepareStatement(String sql)Returns a new instance ofPreparedStatementthat may be used any number of times to execute parameterized requests on the database server.PreparedStatementConnection. prepareStatement(String sql, int autoGeneratedKeys)Creates a defaultPreparedStatementthat can retrieve automatically generated keys.PreparedStatementConnection. prepareStatement(String sql, int[] columnIndexes)Creates a defaultPreparedStatementthat can retrieve the auto-generated keys designated by a supplied array.PreparedStatementConnection. prepareStatement(String sql, int resultSetType, int resultSetConcurrency)Creates aPreparedStatementthat generatesResultSets with the specified values ofresultSetTypeandresultSetConcurrency.PreparedStatementConnection. prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)Creates aPreparedStatementthat generatesResultSets with the specified type, concurrency and holdabilityPreparedStatementConnection. prepareStatement(String sql, String[] columnNames)Creates a defaultPreparedStatementthat can retrieve the auto-generated keys designated by a supplied array. -
Uses of PreparedStatement in javax.sql
Methods in javax.sql that return PreparedStatement Modifier and Type Method Description PreparedStatementStatementEvent. getStatement()Returns the statement of this eventConstructors in javax.sql with parameters of type PreparedStatement Constructor Description StatementEvent(PooledConnection con, PreparedStatement statement)the constructor with null exceptionStatementEvent(PooledConnection con, PreparedStatement statement, SQLException exception)the constructor -
Uses of PreparedStatement in SQLite.JDBC2z
Classes in SQLite.JDBC2z that implement PreparedStatement Modifier and Type Class Description classJDBCPreparedStatementMethods in SQLite.JDBC2z that return PreparedStatement Modifier and Type Method Description PreparedStatementJDBCConnection. prepareStatement(String sql)PreparedStatementJDBCConnection. prepareStatement(String sql, int autokeys)PreparedStatementJDBCConnection. prepareStatement(String sql, int[] colIndexes)PreparedStatementJDBCConnection. prepareStatement(String sql, int resultSetType, int resultSetConcurrency)PreparedStatementJDBCConnection. prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)PreparedStatementJDBCConnection. prepareStatement(String sql, String[] columns)