406407408409410411412413
public void updateClob(String columnLabel, Reader reader) throws SQLException { updateClob(findColumn(columnLabel), reader); } public void updateClob(int columnIndex, Reader reader, long length) throws SQLException { throw new NotUpdatable(); }
415416417418419420421422
public void updateClob(String columnLabel, Reader reader, long length) throws SQLException { updateClob(findColumn(columnLabel), reader, length); } public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException { throw new NotUpdatable(); }
425426427428429430431432
updateNCharacterStream(findColumn(columnLabel), reader); } public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException { throw new NotUpdatable(); }
434435436437438439440441
public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException { updateNCharacterStream(findColumn(columnLabel), reader, length); } public void updateNClob(int columnIndex, NClob nClob) throws SQLException { throw new NotUpdatable(); }
439440441442443444445446
throw new NotUpdatable(); } public void updateNClob(int columnIndex, Reader reader) throws SQLException { throw new NotUpdatable(); }
449450451452453454455
updateNClob(findColumn(columnLabel), reader); } public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException { throw new NotUpdatable(); }
457458459460461462463464
public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException { updateNClob(findColumn(columnLabel), reader, length); } public void updateNString(int columnIndex, String nString) throws SQLException { throw new NotUpdatable(); }
466467468469470471472473
public void updateNString(String columnLabel, String nString) throws SQLException { updateNString(findColumn(columnLabel), nString); } public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException { throw new NotUpdatable(); }
4748495051525354
MySQLConnection conn, StatementImpl creatorStmt) throws SQLException { super(catalog, fields, tuples, conn, creatorStmt); } public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException { throw new NotUpdatable(); }
5253545556575859
throw new NotUpdatable(); } public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException { throw new NotUpdatable(); }