Package org.apache.tajo.exception

Examples of org.apache.tajo.exception.UnsupportedException


   * @see java.sql.ResultSet#getBigDecimal(int)
   */
  @Override
  public BigDecimal getBigDecimal(int fieldId) throws SQLException {
    // TODO
    throw new UnsupportedException();
  }
View Full Code Here


   * @see java.sql.ResultSet#getBigDecimal(java.lang.String)
   */
  @Override
  public BigDecimal getBigDecimal(String fieldName) throws SQLException {
    // TODO
    throw new UnsupportedException();
  }
View Full Code Here

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

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

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

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

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

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

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

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