Searched refs:updateObject (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DFilteredRowSetImpl.java1608 public void updateObject(int columnIndex , Object x) throws SQLException { method in class:FilteredRowSetImpl
1622 super.updateObject(columnIndex,x);
1647 public void updateObject(String columnName , Object x) throws SQLException { method in class:FilteredRowSetImpl
1649 this.updateObject(findColumn(columnName),x);
1680 public void updateObject(int columnIndex , Object x , int scale) throws SQLException { method in class:FilteredRowSetImpl
1694 super.updateObject(columnIndex,x,scale);
1724 public void updateObject(String columnName , Object x, int scale) throws SQLException { method in class:FilteredRowSetImpl
1726 this.updateObject(findColumn(columnName),x,scale);
H A DJoinRowSetImpl.java706 crsTemp.updateObject(++colc, crsInternal.getObject(p));
733 crsTemp.updateObject(++colc, crsInternal.getObject(p));
776 crsTemp.updateObject(++colc, cRowset.getObject(q));
2732 public void updateObject(int columnIndex, Object x, int scale) throws SQLException { method in class:JoinRowSetImpl
2733 crsInternal.updateObject(columnIndex, x, scale);
2759 public void updateObject(int columnIndex, Object x) throws SQLException { method in class:JoinRowSetImpl
2760 crsInternal.updateObject(columnIndex, x);
3254 public void updateObject(String columnName, Object x, int scale) throws SQLException { method in class:JoinRowSetImpl
3255 crsInternal.updateObject(columnName, x, scale);
3280 public void updateObject(Strin method in class:JoinRowSetImpl
[all...]
H A DJdbcRowSetImpl.java2635 public void updateObject(int columnIndex, Object x, int scale) throws SQLException { method in class:JdbcRowSetImpl
2642 rs.updateObject(columnIndex, x, scale);
2659 public void updateObject(int columnIndex, Object x) throws SQLException { method in class:JdbcRowSetImpl
2666 rs.updateObject(columnIndex, x);
2973 public void updateObject(String columnName, Object x, int scale) throws SQLException { method in class:JdbcRowSetImpl
2974 updateObject(findColumn(columnName), x, scale);
2989 public void updateObject(String columnName, Object x) throws SQLException { method in class:JdbcRowSetImpl
2990 updateObject(findColumn(columnName), x);
H A DCachedRowSetImpl.java4875 public void updateObject(int columnIndex, Object x, int scale) throws SQLException { method in class:CachedRowSetImpl
4911 public void updateObject(int columnIndex, Object x) throws SQLException { method in class:CachedRowSetImpl
5406 public void updateObject(String columnName, Object x, int scale) throws SQLException { method in class:CachedRowSetImpl
5407 updateObject(getColIdxByName(columnName), x, scale);
5432 public void updateObject(String columnName, Object x) throws SQLException { method in class:CachedRowSetImpl
5433 updateObject(getColIdxByName(columnName), x);
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java1858 void updateObject(int columnIndex, Object x, int scaleOrLength) method in interface:ResultSet
1878 void updateObject(int columnIndex, Object x) throws SQLException; method in interface:ResultSet
2248 void updateObject(String columnLabel, Object x, int scaleOrLength) method in interface:ResultSet
2268 void updateObject(String columnLabel, Object x) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java223 * crsRes.updateObject(index, obj);
230 * crsSync.updateObject(index, obj);
237 row.updateObject(index, obj);
340 crsRow.updateObject(col, crsSync.getObject(col));
3048 public void updateObject(int columnIndex, Object x, int scale) throws SQLException { method in class:SyncResolverImpl
3075 public void updateObject(int columnIndex, Object x) throws SQLException { method in class:SyncResolverImpl
3566 public void updateObject(String columnName, Object x, int scale) throws SQLException { method in class:SyncResolverImpl
3592 public void updateObject(String columnName, Object x) throws SQLException { method in class:SyncResolverImpl
H A DCachedRowSetWriter.java717 this.crsResolve.updateObject(i,objVal);
864 this.crsResolve.updateObject(i,rsPK);
985 crsRes.updateObject(i,origVals.getObject(i));
H A DXmlReaderContentHandler.java1366 rs.updateObject(idx, getBigDecimalValue(s));

Completed in 127 milliseconds