|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ICommand in com.metamatrix.cdk |
---|
Methods in com.metamatrix.cdk that return ICommand | |
---|---|
ICommand |
CommandBuilder.getCommand(java.lang.String queryString)
|
ICommand |
IConnectorHost.getCommand(java.lang.String query)
|
ICommand |
CommandBuilder.getCommand(java.lang.String queryString,
boolean generateAliases,
boolean supportsGroupAlias)
|
Methods in com.metamatrix.cdk with parameters of type ICommand | |
---|---|
java.util.List |
IConnectorHost.executeCommand(ICommand command)
|
Uses of ICommand in com.metamatrix.cdk.api |
---|
Methods in com.metamatrix.cdk.api that return ICommand | |
---|---|
ICommand |
ConnectorHost.getCommand(java.lang.String query)
|
ICommand |
TranslationUtility.parseCommand(java.lang.String sql)
Parse a SQL command and return an ICommand object. |
ICommand |
TranslationUtility.parseCommand(java.lang.String sql,
boolean generateAliases,
boolean supportsGroupAliases)
|
Methods in com.metamatrix.cdk.api with parameters of type ICommand | |
---|---|
int[] |
ConnectorHost.executeBatchedUpdates(Connection connection,
ICommand[] commands,
RuntimeMetadata runtimeMetadata)
|
java.util.List |
ConnectorHost.executeCommand(ICommand command)
|
Uses of ICommand in com.metamatrix.connector.ldap |
---|
Methods in com.metamatrix.connector.ldap with parameters of type ICommand | |
---|---|
UpdateExecution |
LDAPConnection.createUpdateExecution(ICommand command,
ExecutionContext executionContext,
RuntimeMetadata metadata)
|
Constructors in com.metamatrix.connector.ldap with parameters of type ICommand | |
---|---|
LDAPUpdateExecution(ICommand command,
ExecutionContext ctx,
RuntimeMetadata rm,
ConnectorLogger logger,
javax.naming.ldap.InitialLdapContext ldapCtx)
|
Uses of ICommand in com.metamatrix.connector.loopback |
---|
Methods in com.metamatrix.connector.loopback with parameters of type ICommand | |
---|---|
Execution |
LoopbackConnection.createExecution(ICommand command,
ExecutionContext executionContext,
RuntimeMetadata metadata)
|
Constructors in com.metamatrix.connector.loopback with parameters of type ICommand | |
---|---|
LoopbackExecution(ICommand command,
ConnectorEnvironment env,
RuntimeMetadata metadata)
|
Uses of ICommand in com.metamatrix.connector.salesforce.connection |
---|
Methods in com.metamatrix.connector.salesforce.connection with parameters of type ICommand | |
---|---|
UpdateExecution |
SalesforceConnection.createUpdateExecution(ICommand command,
ExecutionContext executionContext,
RuntimeMetadata metadata)
|
Uses of ICommand in com.metamatrix.connector.salesforce.execution |
---|
Constructors in com.metamatrix.connector.salesforce.execution with parameters of type ICommand | |
---|---|
UpdateExecutionParent(ICommand command,
SalesforceConnection salesforceConnection,
RuntimeMetadata metadata,
ExecutionContext context,
ConnectorEnvironment connectorEnv)
|
Uses of ICommand in com.metamatrix.connector.text |
---|
Methods in com.metamatrix.connector.text with parameters of type ICommand | |
---|---|
protected java.lang.Object |
TextSynchExecution.translateRequest(ICommand request)
Translate command. |
protected void |
TextSynchExecution.translateResults(java.lang.Object response,
ICommand cmd)
Translate results. |
Uses of ICommand in org.teiid.connector.api |
---|
Methods in org.teiid.connector.api with parameters of type ICommand | |
---|---|
Execution |
Connection.createExecution(ICommand command,
ExecutionContext executionContext,
RuntimeMetadata metadata)
Create an execution object for the specified command |
Uses of ICommand in org.teiid.connector.basic |
---|
Methods in org.teiid.connector.basic with parameters of type ICommand | |
---|---|
Execution |
BasicConnection.createExecution(ICommand command,
ExecutionContext executionContext,
RuntimeMetadata metadata)
|
UpdateExecution |
BasicConnection.createUpdateExecution(ICommand command,
ExecutionContext executionContext,
RuntimeMetadata metadata)
|
Uses of ICommand in org.teiid.connector.jdbc |
---|
Fields in org.teiid.connector.jdbc declared as ICommand | |
---|---|
protected ICommand |
JDBCQueryExecution.command
|
Methods in org.teiid.connector.jdbc with parameters of type ICommand | |
---|---|
UpdateExecution |
JDBCSourceConnection.createUpdateExecution(ICommand command,
ExecutionContext executionContext,
RuntimeMetadata metadata)
|
protected TranslatedCommand |
JDBCBaseExecution.translateCommand(ICommand command)
|
Constructors in org.teiid.connector.jdbc with parameters of type ICommand | |
---|---|
JDBCProcedureExecution(ICommand command,
java.sql.Connection connection,
Translator sqlTranslator,
ConnectorLogger logger,
java.util.Properties props,
RuntimeMetadata metadata,
ExecutionContext context,
ConnectorEnvironment env)
|
|
JDBCQueryExecution(ICommand command,
java.sql.Connection connection,
Translator sqlTranslator,
ConnectorLogger logger,
java.util.Properties props,
ExecutionContext context,
ConnectorEnvironment env)
|
|
JDBCUpdateExecution(ICommand command,
java.sql.Connection connection,
Translator sqlTranslator,
ConnectorLogger logger,
java.util.Properties props,
ExecutionContext context)
|
Uses of ICommand in org.teiid.connector.jdbc.oracle |
---|
Methods in org.teiid.connector.jdbc.oracle with parameters of type ICommand | |
---|---|
java.lang.String |
OracleSQLTranslator.getSourceComment(ExecutionContext context,
ICommand command)
|
java.util.List<?> |
OracleSQLTranslator.translateCommand(ICommand command,
ExecutionContext context)
|
Uses of ICommand in org.teiid.connector.jdbc.sybase |
---|
Methods in org.teiid.connector.jdbc.sybase with parameters of type ICommand | |
---|---|
java.util.List<?> |
SybaseSQLTranslator.translateCommand(ICommand command,
ExecutionContext context)
|
Uses of ICommand in org.teiid.connector.jdbc.translator |
---|
Methods in org.teiid.connector.jdbc.translator with parameters of type ICommand | |
---|---|
java.lang.String |
Translator.getSourceComment(ExecutionContext context,
ICommand command)
Returns the source comment for |
protected java.lang.String |
SQLConversionVisitor.getSourceComment(ICommand command)
|
void |
TranslatedCommand.translateCommand(ICommand command)
The method to cause this object to do it's thing. |
java.util.List<?> |
Translator.translateCommand(ICommand command,
ExecutionContext context)
Return a List of translated parts ( ILanguageObject s and Objects), or null
if to rely on the default translation. |
Uses of ICommand in org.teiid.connector.language |
---|
Subinterfaces of ICommand in org.teiid.connector.language | |
---|---|
interface |
IBatchedUpdates
Represents a batch of INSERT, UPDATE and DELETE commands to be executed together. |
interface |
IDelete
Represents a DELETE command in the language objects. |
interface |
IInsert
Represents an INSERT command in the language objects. |
interface |
IProcedure
Represents a procedural execution (such as a stored procedure). |
interface |
IQuery
Represents a SELECT query in the language objects. |
interface |
IQueryCommand
|
interface |
ISetQuery
|
interface |
IUpdate
Represents an UPDATE command in the language objects. |
Methods in org.teiid.connector.language that return types with arguments of type ICommand | |
---|---|
java.util.List<ICommand> |
IBatchedUpdates.getUpdateCommands()
|
Uses of ICommand in org.teiid.connector.visitor.util |
---|
Methods in org.teiid.connector.visitor.util with parameters of type ICommand | |
---|---|
protected java.lang.String |
SQLStringVisitor.getSourceComment(ICommand command)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |