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

/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DFilteredRowSetImpl.java768 public void updateLong(int columnIndex , long x) throws SQLException { method in class:FilteredRowSetImpl
782 super.updateLong(columnIndex,x);
807 public void updateLong( String columnName , long x) throws SQLException { method in class:FilteredRowSetImpl
809 this.updateLong(findColumn(columnName) , x);
H A DJoinRowSetImpl.java2390 public void updateLong(int columnIndex, long x) throws SQLException { method in class:JoinRowSetImpl
2391 crsInternal.updateLong(columnIndex, x);
2915 public void updateLong(String columnName, long x) throws SQLException { method in class:JoinRowSetImpl
2916 crsInternal.updateLong(columnName, x);
H A DJdbcRowSetImpl.java2337 public void updateLong(int columnIndex, long x) throws SQLException { method in class:JdbcRowSetImpl
2344 rs.updateLong(columnIndex, x);
2762 public void updateLong(String columnName, long x) throws SQLException { method in class:JdbcRowSetImpl
2763 updateLong(findColumn(columnName), x);
H A DCachedRowSetImpl.java4391 public void updateLong(int columnIndex, long x) throws SQLException { method in class:CachedRowSetImpl
5070 public void updateLong(String columnName, long x) throws SQLException { method in class:CachedRowSetImpl
5071 updateLong(getColIdxByName(columnName), x);
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java1603 void updateLong(int columnIndex, long x) throws SQLException; method in interface:ResultSet
1991 void updateLong(String columnLabel, long x) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java2705 public void updateLong(int columnIndex, long x) throws SQLException { method in class:SyncResolverImpl
3230 public void updateLong(String columnName, long x) throws SQLException { method in class:SyncResolverImpl
H A DXmlReaderContentHandler.java1355 rs.updateLong(idx, getLongValue(s));

Completed in 124 milliseconds