Package com.lingbobu.flashdb.transfer.impl

Examples of com.lingbobu.flashdb.transfer.impl.OutputFlashDB


  public TransferOutput newOutput(String outputBeanName, Object... callParams) {
    return callFunction(outputBeanName, callParams, TransferOutput.class);
  }

  public OutputFlashDB newOutput(int outputMode, String outputTableName) {
    return new OutputFlashDB(flashDatabase, outputTableName, outputMode);
  }
View Full Code Here


  public OutputFlashDB newOutput(int outputMode, String outputTableName) {
    return new OutputFlashDB(flashDatabase, outputTableName, outputMode);
  }

  public OutputFlashDB newOutputUpdate(String outputTableName, String... updateColumns) {
    return new OutputFlashDB(flashDatabase, outputTableName, updateColumns);
  }
View Full Code Here

TOP

Related Classes of com.lingbobu.flashdb.transfer.impl.OutputFlashDB

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.