Searched defs:updateBoolean (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DFilteredRowSetImpl.java563 public void updateBoolean(int columnIndex, boolean x) throws SQLException { method in class:FilteredRowSetImpl
577 super.updateBoolean(columnIndex,x);
602 public void updateBoolean(String columnName , boolean x) throws SQLException { method in class:FilteredRowSetImpl
604 this.updateBoolean(findColumn(columnName),x);
H A DJoinRowSetImpl.java2282 public void updateBoolean(int columnIndex, boolean x) throws SQLException { method in class:JoinRowSetImpl
2283 crsInternal.updateBoolean(columnIndex, x);
2811 public void updateBoolean(String columnName, boolean x) throws SQLException { method in class:JoinRowSetImpl
2812 crsInternal.updateBoolean(columnName, x);
H A DJdbcRowSetImpl.java2241 public void updateBoolean(int columnIndex, boolean x) throws SQLException { method in class:JdbcRowSetImpl
2248 rs.updateBoolean(columnIndex, x);
2698 public void updateBoolean(String columnName, boolean x) throws SQLException { method in class:JdbcRowSetImpl
2699 updateBoolean(findColumn(columnName), x);
H A DCachedRowSetImpl.java4249 public void updateBoolean(int columnIndex, boolean x) throws SQLException { method in class:CachedRowSetImpl
4966 public void updateBoolean(String columnName, boolean x) throws SQLException { method in class:CachedRowSetImpl
4967 updateBoolean(getColIdxByName(columnName), x);
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java128 * rs.updateBoolean(3, true); // updates the third column to <code>true</code>
1526 void updateBoolean(int columnIndex, boolean x) throws SQLException; method in interface:ResultSet
1915 void updateBoolean(String columnLabel, boolean x) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java2597 public void updateBoolean(int columnIndex, boolean x) throws SQLException { method in class:SyncResolverImpl
3126 public void updateBoolean(String columnName, boolean x) throws SQLException { method in class:SyncResolverImpl

Completed in 123 milliseconds