Searched refs:updateTimestamp (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DFilteredRowSetImpl.java1324 public void updateTimestamp(int columnIndex , Timestamp x) throws SQLException { method in class:FilteredRowSetImpl
1338 super.updateTimestamp(columnIndex,x);
1368 public void updateTimestamp(String columnName , Timestamp x) throws SQLException { method in class:FilteredRowSetImpl
1370 this.updateTimestamp(findColumn(columnName),x);
H A DJoinRowSetImpl.java2613 public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws SQLException { method in class:JoinRowSetImpl
2614 crsInternal.updateTimestamp(columnIndex, x);
3132 public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException { method in class:JoinRowSetImpl
3133 crsInternal.updateTimestamp(columnName, x);
H A DJdbcRowSetImpl.java2532 public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws SQLException { method in class:JdbcRowSetImpl
2539 rs.updateTimestamp(columnIndex, x);
2901 public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException { method in class:JdbcRowSetImpl
2902 updateTimestamp(findColumn(columnName), x);
H A DCachedRowSetImpl.java4682 public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws SQLException { method in class:CachedRowSetImpl
5287 public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException { method in class:CachedRowSetImpl
5288 updateTimestamp(getColIdxByName(columnName), x);
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java1757 void updateTimestamp(int columnIndex, java.sql.Timestamp x) method in interface:ResultSet
2146 void updateTimestamp(String columnLabel, java.sql.Timestamp x) method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java2929 public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws SQLException { method in class:SyncResolverImpl
3447 public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException { method in class:SyncResolverImpl
H A DXmlReaderContentHandler.java1380 rs.updateTimestamp(idx, getTimestampValue(s));

Completed in 103 milliseconds