Method setFetchDirection(int direction)
Return type: void
Member of:
java.sql.Statement
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
public void setFetchDirection(int direction) throws SQLException { _stmt.setFetchDirection( direction); }
2
public void setFetchDirection(int direction) throws SQLException { checkOpen(); _stmt.setFetchDirection(direction);}
3
_cs.setFetchDirection(p1);
4
m_pstmt.setFetchDirection(direction);
5
delegate_.setFetchDirection( direction );
6
sqlStatement.setFetchDirection(ResultSet.FETCH_REVERSE);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.