Field TYPE_SCROLL_SENSITIVE
Field type: int
Member of:
java.sql.ResultSet
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return type != java.sql.ResultSet.TYPE_SCROLL_SENSITIVE;
2
ResultSet.TYPE_SCROLL_SENSITIVE);
3
boolean scrollable = (type == ResultSet.TYPE_SCROLL_INSENSITIVE || type == ResultSet.TYPE_SCROLL_SENSITIVE);
4
if (type == java.sql.ResultSet.TYPE_SCROLL_SENSITIVE)
5
if (md.supportsResultSetType(ResultSet.TYPE_SCROLL_SENSITIVE)) {
6
mockConnection.prepareStatement(SELECT_ID_FORENAME_WHERE, ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
7
PreparedStatement pstmt = con.prepareStatement(sql, ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.