Home
last modified time | relevance | path

Searched refs:updateClob (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/sql/
DResultSet.java1585 public void updateClob(int columnIndex, Clob x) throws SQLException; in updateClob() method
1598 public void updateClob(String columnName, Clob x) throws SQLException; in updateClob() method
2151 public void updateClob(int columnIndex, Reader reader, long length) throws SQLException; in updateClob() method
2158 public void updateClob(String columnLabel, Reader reader, long length) throws SQLException; in updateClob() method
2249 public void updateClob(int columnIndex, Reader reader) throws SQLException; in updateClob() method
2256 public void updateClob(String columnLabel, Reader reader) throws SQLException; in updateClob() method
/libcore/luni/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DImpl_RowSet.java671 public void updateClob(int columnIndex, Clob x) throws SQLException { in updateClob() method in Impl_RowSet
674 public void updateClob(String columnName, Clob x) throws SQLException { in updateClob() method in Impl_RowSet
902 public void updateClob(int columnIndex, Reader reader, long length) in updateClob() method in Impl_RowSet
907 public void updateClob(String columnLabel, Reader reader, long length) in updateClob() method in Impl_RowSet
912 public void updateClob(int columnIndex, Reader reader) throws SQLException { in updateClob() method in Impl_RowSet
916 public void updateClob(String columnLabel, Reader reader) in updateClob() method in Impl_RowSet
/libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
DJDBCResultSet.java1309 public void updateClob(int colIndex, java.sql.Clob x)
1314 public void updateClob(String colName, java.sql.Clob x)
1317 updateClob(col, x);
1493 public void updateClob(int colIndex, java.io.Reader x,
1499 public void updateClob(String colName, java.io.Reader x,
1503 updateClob(col, x, len);
1574 public void updateClob(int colIndex, java.io.Reader x)
1579 public void updateClob(String colName, java.io.Reader x)
1582 updateClob(col, x);