Searched defs:updateBlob (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java2848 void updateBlob(int columnIndex, java.sql.Blob x) throws SQLException; method in interface:ResultSet
2867 void updateBlob(String columnLabel, java.sql.Blob x) throws SQLException; method in interface:ResultSet
3551 void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException; method in interface:ResultSet
3575 void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException; method in interface:ResultSet
3923 * <code>updateBlob</code> which takes a length parameter.
3935 void updateBlob(int columnIndex, InputStream inputStream) throws SQLException; method in interface:ResultSet
3948 * <code>updateBlob</code> which takes a length parameter.
3960 void updateBlob(String columnLabel, InputStream inputStream) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java3923 public void updateBlob(int columnIndex, Blob b) throws SQLException { method in class:JoinRowSetImpl
3924 crsInternal.updateBlob(columnIndex, b);
3951 public void updateBlob(String columnName, Blob b) throws SQLException { method in class:JoinRowSetImpl
3952 crsInternal.updateBlob(columnName, b);
H A DJdbcRowSetImpl.java3625 public void updateBlob(int columnIndex, Blob b) throws SQLException { method in class:JdbcRowSetImpl
3627 rs.updateBlob(columnIndex, b);
3652 public void updateBlob(String columnName, Blob b) throws SQLException { method in class:JdbcRowSetImpl
3653 updateBlob(findColumn(columnName), b);
5190 public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException{ method in class:JdbcRowSetImpl
5223 public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException { method in class:JdbcRowSetImpl
5241 * <code>updateBlob</code> which takes a length parameter.
5258 public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException { method in class:JdbcRowSetImpl
5275 * <code>updateBlob</code> which takes a length parameter.
5293 public void updateBlob(Strin method in class:JdbcRowSetImpl
[all...]
H A DCachedRowSetImpl.java6626 public void updateBlob(int columnIndex, Blob b) throws SQLException { method in class:CachedRowSetImpl
6666 public void updateBlob(String columnName, Blob b) throws SQLException { method in class:CachedRowSetImpl
6667 updateBlob(getColIdxByName(columnName), b);
8244 public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException{ method in class:CachedRowSetImpl
8277 public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException { method in class:CachedRowSetImpl
8295 * <code>updateBlob</code> which takes a length parameter.
8312 public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException { method in class:CachedRowSetImpl
8329 * <code>updateBlob</code> which takes a length parameter.
8347 public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException { method in class:CachedRowSetImpl
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java4346 public void updateBlob(int columnIndex, Blob b) throws SQLException { method in class:SyncResolverImpl
4372 public void updateBlob(String columnName, Blob b) throws SQLException { method in class:SyncResolverImpl

Completed in 115 milliseconds