Package org.teiid.translator.salesforce.execution.visitors

Examples of org.teiid.translator.salesforce.execution.visitors.DeleteVisitor


  }

  @Override
  public void execute() throws TranslatorException {
    try {
      DeleteVisitor dVisitor = new DeleteVisitor(getMetadata());
      dVisitor.visitNode(command);
      String[] Ids = getIDs(((Delete)command).getWhere(), dVisitor);
      if(null != Ids && Ids.length > 0) {
        result = getConnection().delete(Ids);
      }
    } catch (ResourceException e) {
View Full Code Here

TOP

Related Classes of org.teiid.translator.salesforce.execution.visitors.DeleteVisitor

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.