Searched refs:PreparedStatement (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/
H A DStatementEvent.java31 import java.sql.PreparedStatement;
38 * <code>PreparedStatement</code> that is associated with the <code>PooledConnection</code> has been closed or the driver determines
46 private PreparedStatement statement;
50 * <code>PreparedStatement</code>. The <code>SQLException</code> contained in the event defaults to
54 * <code>PreparedStatement</code>is associated with.
55 * @param statement The <code>PreparedStatement</code> that is bieng closed or is invalid
62 PreparedStatement statement) {
72 * <code>PreparedStatement</code> and <code>SQLException</code>
74 * @param con The <code>PooledConnection</code> that the closed or invalid <code>PreparedStatement</code>
76 * @param statement The <code>PreparedStatement</cod
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DConnection.java92 * <code>PreparedStatement</code> object.
107 * Creates a <code>PreparedStatement</code> object for sending
111 * pre-compiled and stored in a <code>PreparedStatement</code> object. This
121 * not be sent to the database until the <code>PreparedStatement</code>
125 * Result sets created using the returned <code>PreparedStatement</code>
133 * @return a new default <code>PreparedStatement</code> object containing the
138 PreparedStatement prepareStatement(String sql)
537 * Creates a <code>PreparedStatement</code> object that will generate
555 * @return a new PreparedStatement object containing the
567 PreparedStatement prepareStatemen
[all...]
H A DPreparedStatement.java36 * <code>PreparedStatement</code> object. This object can then be used to
51 * PreparedStatement pstmt = con.prepareStatement("UPDATE EMPLOYEES
61 public interface PreparedStatement extends Statement { interface in inherits:Statement
64 * Executes the SQL query in this <code>PreparedStatement</code> object
70 * this method is called on a closed <code>PreparedStatement</code> or the SQL
80 * Executes the SQL statement in this <code>PreparedStatement</code> object,
88 * this method is called on a closed <code>PreparedStatement</code>
106 * this method is called on a closed <code>PreparedStatement</code>
127 * this method is called on a closed <code>PreparedStatement</code>
140 * this method is called on a closed <code>PreparedStatement</cod
[all...]
H A DCallableStatement.java47 * {@link PreparedStatement}. The type of all OUT parameters must be
65 public interface CallableStatement extends PreparedStatement {
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetReader.java48 * <code>PreparedStatement</code> object.
169 PreparedStatement pstmt = con.prepareStatement(crs.getCommand());
202 * PreparedStatement handle.Also call the populate(ResultSet,int) function to populate
351 * in the rowset's command (the given <code>PreparedStatement</code>
356 * <code>PreparedStatement.setXXX</code> method to use for setting
360 * <code>PreparedStatement</code> object
361 * @param pstmt the <code>PreparedStatement</code> object that is the
367 PreparedStatement pstmt) throws SQLException {
H A DCachedRowSetWriter.java99 * statements in the <code>PreparedStatement</code> object
116 * statements in the <code>PreparedStatement</code> object
144 * placeholders in a <code>PreparedStatement</code> object that this
269 PreparedStatement pstmtIns = null;
463 PreparedStatement pstmt;
823 * @param pstmt the <code>PreparedStatement</code> object that will be used
830 PreparedStatement pstmt, CachedRowSetImpl crsRes) throws SQLException {
835 PreparedStatement pstmtSel = con.prepareStatement(selectCmd,
930 PreparedStatement pstmt;
1262 * a <code>PreparedStatement</cod
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java55 * The <code>PreparedStatement</code> object that is this rowset's
57 * <code>execute</code> creates the <code>PreparedStatement</code>
60 private PreparedStatement ps;
546 * for the command property to create a <code>PreparedStatement</code>
591 protected void setProperties(PreparedStatement ps) throws SQLException {
672 protected PreparedStatement prepare() throws SQLException {
698 private void decodeParams(Object[] params, PreparedStatement ps)
1605 // initialized with ResultSet handle and may be by PreparedStatement
4187 // Returns a PreparedStatement Handle
4191 * Gets this <code>JdbcRowSet</code> object's PreparedStatement propert
[all...]

Completed in 248 milliseconds