Tabnine Logo
ExecutionFactory.createExecution
Code IndexAdd Tabnine to your IDE (free)

How to use
createExecution
method
in
org.teiid.translator.ExecutionFactory

Best Java code snippets using org.teiid.translator.ExecutionFactory.createExecution (Showing top 7 results out of 315)

origin: teiid/teiid

@Override
public UpdateExecution createUpdateExecution(Command command,
    ExecutionContext executionContext, RuntimeMetadata metadata,
    C connection) throws TranslatorException {
  return (UpdateExecution) delegate.createExecution(command, executionContext,
      metadata, connection);
}
@Override
origin: teiid/teiid

@Override
public ResultSetExecution createResultSetExecution(QueryExpression command,
    ExecutionContext executionContext, RuntimeMetadata metadata,
    C connection) throws TranslatorException {
  return (ResultSetExecution) delegate.createExecution(command, executionContext,
      metadata, connection);
}
@Override
origin: teiid/teiid

@Override
public ProcedureExecution createProcedureExecution(Call command,
    ExecutionContext executionContext, RuntimeMetadata metadata,
    C connection) throws TranslatorException {
  return (ProcedureExecution) delegate.createExecution(command, executionContext,
      metadata, connection);
}
@Override
origin: teiid/teiid

private List executeCommand(Command command, RuntimeMetadata runtimeMetadata, boolean close)
  throws TranslatorException {
  Execution exec = connector.createExecution(command, this.executionContext, runtimeMetadata, this.connectionFactory);
  exec.execute();
  List results = readResultsFromExecution(exec);
  if (close) {
    exec.close();
  }
  return results;
}
origin: org.jboss.teiid/teiid-engine

  ((ReusableExecution)exec).reset(translatedCommand, this.securityContext, connection);
} else {
  exec = connector.createExecution(translatedCommand, this.securityContext, queryMetadata, (unwrapped == null) ? this.connection:unwrapped);
origin: teiid/teiid

  ((ReusableExecution)exec).reset(translatedCommand, this.securityContext, connection);
} else {
  exec = connector.createExecution(translatedCommand, this.securityContext, queryMetadata, (unwrapped == null) ? this.connection:unwrapped);
origin: org.teiid/teiid-engine

  ((ReusableExecution)exec).reset(translatedCommand, this.securityContext, connection);
} else {
  exec = connector.createExecution(translatedCommand, this.securityContext, queryMetadata, (unwrapped == null) ? this.connection:unwrapped);
org.teiid.translatorExecutionFactorycreateExecution

Javadoc

Create an execution object for the specified command

Popular methods of ExecutionFactory

  • start
  • getMetadata
  • isSourceRequired
  • areLobsUsableAfterClose
  • closeConnection
  • getCacheDirective
  • getCollationLocale
  • getConnection
  • getDefaultNullOrder
  • getDirectQueryProcedureName
  • getExcludedCommonTableExpressionName
  • getMaxDependentInPredicates
  • getExcludedCommonTableExpressionName,
  • getMaxDependentInPredicates,
  • getMaxFromGroups,
  • getMaxInCriteriaSize,
  • getPushDownFunctions,
  • getRequiredLikeEscape,
  • getSupportedFunctions,
  • getSupportedJoinCriteria,
  • getTransactionSupport

Popular in Java

  • Finding current android device location
  • getSystemService (Context)
  • getResourceAsStream (ClassLoader)
  • getApplicationContext (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Menu (java.awt)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now