Package com.alibaba.wasp.jdbc.command

Examples of com.alibaba.wasp.jdbc.command.CommandRemote


  }

  @Override
  public CommandInterface prepareCommand(FClient fClient,String sql, int fetchSize, ReadModel readModel, boolean autoCommit, ExecuteSession statementSession) {
    checkClosed();
    return new CommandRemote(fClient, this, sql, fetchSize, readModel, autoCommit, statementSession, null);
  }
View Full Code Here


  }

  @Override
  public CommandInterface prepareCommand(FClient fClient, List<String> sqls, boolean autoCommit, ExecuteSession statementSession) {
    checkClosed();
    return new CommandRemote(fClient, this, sqls, autoCommit, statementSession);
  }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.jdbc.command.CommandRemote

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.