Package org.apache.tajo.exception

Examples of org.apache.tajo.exception.UnsupportedException


   *
   * @see java.sql.ResultSet#updateObject(java.lang.String, java.lang.Object)
   */
  @Override
  public void updateObject(String arg0, Object arg1) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here


   *
   * @see java.sql.ResultSet#updateObject(int, java.lang.Object, int)
   */
  @Override
  public void updateObject(int arg0, Object arg1, int arg2) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   * int)
   */
  @Override
  public void updateObject(String arg0, Object arg1, int arg2)
      throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#updateRef(int, java.sql.Ref)
   */
  @Override
  public void updateRef(int arg0, Ref arg1) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#updateRef(java.lang.String, java.sql.Ref)
   */
  @Override
  public void updateRef(String arg0, Ref arg1) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#updateRow()
   */
  @Override
  public void updateRow() throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#updateRowId(int, java.sql.RowId)
   */
  @Override
  public void updateRowId(int arg0, RowId arg1) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#updateRowId(java.lang.String, java.sql.RowId)
   */
  @Override
  public void updateRowId(String arg0, RowId arg1) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#updateSQLXML(int, java.sql.SQLXML)
   */
  @Override
  public void updateSQLXML(int arg0, SQLXML arg1) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#updateSQLXML(java.lang.String, java.sql.SQLXML)
   */
  @Override
  public void updateSQLXML(String arg0, SQLXML arg1) throws SQLException {
    throw new UnsupportedException();

  }
View Full Code Here

TOP

Related Classes of org.apache.tajo.exception.UnsupportedException

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.