Package org.apache.tajo.exception

Examples of org.apache.tajo.exception.UnsupportedException


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


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

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

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

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

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

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

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

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

   *
   * @see java.sql.ResultSet#getNClob(java.lang.String)
   */
  @Override
  public NClob getNClob(String arg0) 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.