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

/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DFilteredRowSetImpl.java1039 public void updateString(int columnIndex , String x) throws SQLException { method in class:FilteredRowSetImpl
1053 super.updateString(columnIndex,x);
1078 public void updateString(String columnName , String x) throws SQLException { method in class:FilteredRowSetImpl
1080 this.updateString(findColumn(columnName),x);
H A DJoinRowSetImpl.java2501 public void updateString(int columnIndex, String x) throws SQLException { method in class:JoinRowSetImpl
2502 crsInternal.updateString(columnIndex, x);
3019 public void updateString(String columnName, String x) throws SQLException { method in class:JoinRowSetImpl
3020 crsInternal.updateString(columnName, x);
H A DJdbcRowSetImpl.java2434 public void updateString(int columnIndex, String x) throws SQLException { method in class:JdbcRowSetImpl
2441 rs.updateString(columnIndex, x);
2827 public void updateString(String columnName, String x) throws SQLException { method in class:JdbcRowSetImpl
2828 updateString(findColumn(columnName), x);
H A DCachedRowSetImpl.java4538 public void updateString(int columnIndex, String x) throws SQLException { method in class:CachedRowSetImpl
5174 public void updateString(String columnName, String x) throws SQLException { method in class:CachedRowSetImpl
5175 updateString(getColIdxByName(columnName), x);
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java111 * rs.updateString("NAME", "AINSWORTH"); // updates the
125 * rs.updateString(1, "AINSWORTH"); // updates the
1680 void updateString(int columnIndex, String x) throws SQLException; method in interface:ResultSet
2068 void updateString(String columnLabel, String x) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java2817 public void updateString(int columnIndex, String x) throws SQLException { method in class:SyncResolverImpl
3334 public void updateString(String columnName, String x) throws SQLException { method in class:SyncResolverImpl

Completed in 1595 milliseconds