Package org.apache.tajo.exception

Examples of org.apache.tajo.exception.UnsupportedException


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


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

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

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

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

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

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

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

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

   *
   * @see java.sql.ResultSet#updateObject(int, java.lang.Object)
   */
  @Override
  public void updateObject(int arg0, Object 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.