Package com.taobao.tddl.common.exception.runtime

Examples of com.taobao.tddl.common.exception.runtime.NotSupportException


  public int getResultSetType() throws SQLException {
    throw new NotSupportException("");
  }

  public int getUpdateCount() throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here


    //throw new NotSupportException("");
    return null;
  }

  public void setCursorName(String name) throws SQLException {
    throw new NotSupportException("");

  }
View Full Code Here

    throw new NotSupportException("");

  }

  public void setEscapeProcessing(boolean enable) throws SQLException {
    throw new NotSupportException("");

  }
View Full Code Here

    throw new NotSupportException("");

  }

  public void setFetchDirection(int direction) throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

  public void setFetchSize(int rows) throws SQLException {
    this.fetchSize=rows;
  }

  public void setMaxFieldSize(int max) throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

  private boolean isClosed = false;
  private boolean autoCommit = true;
  private int commitInvokingTimes = 0;

  public void clearWarnings() throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

    checkClose();
    return autoCommit;
  }

  public String getCatalog() throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

    return transactionIsolation;
  }

  public Map<String, Class<?>> getTypeMap() throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

  public Map<String, Class<?>> getTypeMap() throws SQLException {
    throw new NotSupportException("");
  }

  public SQLWarning getWarnings() throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

    mockDataSource.checkState();
    return isReadOnly;
  }

  public String nativeSQL(String sql) throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

TOP

Related Classes of com.taobao.tddl.common.exception.runtime.NotSupportException

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.