Package com.mysql.jdbc

Examples of com.mysql.jdbc.NotUpdatable


  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();
   
  }
View Full Code Here


  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();
   
  }
View Full Code Here

    updateNCharacterStream(findColumn(columnLabel), reader);
   
  }

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

  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();
   
  }
View Full Code Here

    throw new NotUpdatable();
   
  }

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

    updateNClob(findColumn(columnLabel), reader);
   
  }

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

  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();
   
  }
View Full Code Here

  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();
   
  }
View Full Code Here

      MySQLConnection conn, StatementImpl creatorStmt) throws SQLException {
    super(catalog, fields, tuples, conn, creatorStmt);
  }

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

    throw new NotUpdatable();
   
  }

  public void updateAsciiStream(int columnIndex, InputStream 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.