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

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


  public String nativeSQL(String sql) throws SQLException {
    throw new NotSupportException("");
  }

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


  public CallableStatement prepareCall(String sql) throws SQLException {
    throw new NotSupportException("");
  }

  public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

    throw new NotSupportException("");
  }

  public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency,
      int resultSetHoldability) throws SQLException {
    throw new NotSupportException("");
  }
View Full Code Here

    return new MockPreparedStatement("prepareStatement#string_int_int_int", this.mockDataSource, sql);
  }

  public void releaseSavepoint(Savepoint savepoint) throws SQLException {
    mockDataSource.checkState();
    throw new NotSupportException("");
  }
View Full Code Here

                null, new Object[]{ autoCommit }));
    this.autoCommit = autoCommit;
  }

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

  public void setCatalog(String catalog) throws SQLException {
    throw new NotSupportException("");
  }

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

    mockDataSource.checkState();
    //TODO:
  }

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

  public Savepoint setSavepoint() throws SQLException {
    throw new NotSupportException("");
  }

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

    mockDataSource.checkState();
    this.transactionIsolation = level;
  }

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

    this.sqls.add(sql);
  }

  public void cancel() throws SQLException {
    mds.checkState();
    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.