Package com.mysql.jdbc

Examples of com.mysql.jdbc.NotUpdatable


   * @throws NotUpdatable
   *             DOCUMENT ME!
   */
  public void updateNCharacterStream(int columnIndex, Reader x, int length)
      throws SQLException {
    throw new NotUpdatable();
  }
View Full Code Here


  public void updateNClob(String columnName, NClob nClob) throws SQLException {
    updateNClob(findColumn(columnName), nClob);
  }
 
  public void updateRowId(int columnIndex, RowId x) throws SQLException {
    throw new NotUpdatable();
  }
View Full Code Here

  public synchronized boolean isClosed() throws SQLException {
    return this.isClosed;
  }

  public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
    throw new NotUpdatable();
   
  }
View Full Code Here

    updateAsciiStream(findColumn(columnLabel), x);
   
  }

  public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
    throw new NotUpdatable();
   
  }
View Full Code Here

  public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
    updateAsciiStream(findColumn(columnLabel), x, length);
  }

  public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
    throw new NotUpdatable();
   
  }
View Full Code Here

  public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
    updateBinaryStream(findColumn(columnLabel), x);
  }

  public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
    throw new NotUpdatable();
   
  }
View Full Code Here

  public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
    updateBinaryStream(findColumn(columnLabel), x, length);
  }

  public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
    throw new NotUpdatable();
  }
View Full Code Here

  public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
    updateBlob(findColumn(columnLabel), inputStream);
  }

  public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
    throw new NotUpdatable();
   
  }
View Full Code Here

  public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
    updateBlob(findColumn(columnLabel), inputStream, length);
  }

  public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
    throw new NotUpdatable();
   
  }
View Full Code Here

  public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
    updateCharacterStream(findColumn(columnLabel), reader);
  }

  public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
    throw new NotUpdatable();
   
  }
View Full Code Here

TOP

Related Classes of com.mysql.jdbc.NotUpdatable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.