Searched defs:direction (Results 1 - 5 of 5) sorted by relevance

/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DLogCursor.java87 /**Constants used to identify browse direction.
100 int direction; field in class:LogCursor
127 // set direction field to ASCENDING
129 // set direction field to DESCENDING
138 direction = ASCENDING;
140 direction = DESCENDING;
293 if( direction == ASCENDING )
338 if( direction == ASCENDING )
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/
H A DStatementWrapper.java400 * Gives the driver a hint as to the direction in which
405 * Note that this method sets the default fetch direction for
408 * its own fetch direction.
410 * @param direction the initial direction for processing rows
412 * or the given direction
418 public void setFetchDirection(int direction) throws SQLException { argument
419 jdbcStatement.setFetchDirection(direction);
423 * Retrieves the direction for fetching rows from
427 * a fetch direction b
[all...]
H A DPreparedStatementWrapper.java862 public void setFetchDirection(int direction) throws SQLException { argument
863 preparedStatement.setFetchDirection(direction);
865 currentFetchDirection = direction;
H A DResultSetWrapper.java1102 * Gives a hint as to the direction in which the rows in this
1107 * The fetch direction may be changed at any time.
1109 * @param direction an <code>int</code> specifying the suggested
1110 * fetch direction; one of <code>ResultSet.FETCH_FORWARD</code>,
1115 * direction is not <code>FETCH_FORWARD</code>
1120 public void setFetchDirection(int direction) throws SQLException { argument
1121 resultSet.setFetchDirection(direction);
1125 * Retrieves the fetch direction for this
1128 * @return the current fetch direction for this <code>ResultSet</code> object
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/
H A Djdbc40.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ...

Completed in 2948 milliseconds