Uses of Interface
org.eclipse.datatools.modelbase.sql.statements.SQLStatement

Packages that use SQLStatement
org.eclipse.datatools.enablement.sybase.asa.base.catalog   
org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel   
org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel.impl   
org.eclipse.datatools.modelbase.sql.query   
org.eclipse.datatools.modelbase.sql.query.util   
org.eclipse.datatools.modelbase.sql.statements   
org.eclipse.datatools.modelbase.sql.statements.util   
org.eclipse.datatools.sqltools.parsers.sql   
 

Uses of SQLStatement in org.eclipse.datatools.enablement.sybase.asa.base.catalog
 

Methods in org.eclipse.datatools.enablement.sybase.asa.base.catalog that return SQLStatement
 SQLStatement SybaseASACatalogBaseViewTable.getStatement()
           
 

Uses of SQLStatement in org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel
 

Methods in org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel that return SQLStatement
 SQLStatement SybaseASABaseViewTable.getStatement()
          Returns the value of the 'Statement' reference.
 

Methods in org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel with parameters of type SQLStatement
 void SybaseASABaseViewTable.setStatement(SQLStatement value)
          Sets the value of the 'Statement' reference.
 

Uses of SQLStatement in org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel.impl
 

Methods in org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel.impl that return SQLStatement
 SQLStatement SybaseASABaseViewTableImpl.basicGetStatement()
           
 SQLStatement SybaseASABaseViewTableImpl.getStatement()
           
 

Methods in org.eclipse.datatools.enablement.sybase.asa.models.sybaseasabasesqlmodel.impl with parameters of type SQLStatement
 void SybaseASABaseViewTableImpl.setStatement(SQLStatement newStatement)
           
 

Uses of SQLStatement in org.eclipse.datatools.modelbase.sql.query
 

Subinterfaces of SQLStatement in org.eclipse.datatools.modelbase.sql.query
 interface CallStatement
          A representation of the model object 'Call Statement'.
 interface QueryChangeStatement
          A representation of the model object 'Change Statement'.
 interface QueryDeleteStatement
          A representation of the model object 'SQL Delete Statement'.
 interface QueryInsertStatement
          A representation of the model object 'SQL Insert Statement'.
 interface QueryMergeStatement
          A representation of the model object 'SQL Merge Statement'.
 interface QuerySelectStatement
          A representation of the model object 'SQL Select Statement'.
 interface QueryStatement
          A representation of the model object 'Statement'.
 interface QueryUpdateStatement
          A representation of the model object 'SQL Update Statement'.
 

Uses of SQLStatement in org.eclipse.datatools.modelbase.sql.query.util
 

Methods in org.eclipse.datatools.modelbase.sql.query.util with parameters of type SQLStatement
 java.lang.Object SQLQueryModelSwitch.caseSQLStatement(SQLStatement object)
          Returns the result of interpreting the object as an instance of 'SQL Statement'.
 

Uses of SQLStatement in org.eclipse.datatools.modelbase.sql.statements
 

Subinterfaces of SQLStatement in org.eclipse.datatools.modelbase.sql.statements
 interface SQLConnectionStatement
          A representation of the model object 'SQL Connection Statement'.
 interface SQLControlStatement
          A representation of the model object 'SQL Control Statement'.
 interface SQLDataChangeStatement
          A representation of the model object 'SQL Data Change Statement'.
 interface SQLDataStatement
          A representation of the model object 'SQL Data Statement'.
 interface SQLDiagnosticsStatement
          A representation of the model object 'SQL Diagnostics Statement'.
 interface SQLDynamicStatement
          A representation of the model object 'SQL Dynamic Statement'.
 interface SQLSchemaStatement
          A representation of the model object 'SQL Schema Statement'.
 interface SQLSessionStatement
          A representation of the model object 'SQL Session Statement'.
 interface SQLStatementDefault
          A representation of the model object 'SQL Statement Default'.
 interface SQLTransactionStatement
          A representation of the model object 'SQL Transaction Statement'.
 

Uses of SQLStatement in org.eclipse.datatools.modelbase.sql.statements.util
 

Methods in org.eclipse.datatools.modelbase.sql.statements.util with parameters of type SQLStatement
 java.lang.Object SQLStatementsSwitch.caseSQLStatement(SQLStatement object)
          Returns the result of interpreting the object as an instance of 'SQL Statement'.
 

Uses of SQLStatement in org.eclipse.datatools.sqltools.parsers.sql
 

Methods in org.eclipse.datatools.sqltools.parsers.sql that return SQLStatement
 SQLStatement SQLParseResult.getSQLStatement()
           
 

Methods in org.eclipse.datatools.sqltools.parsers.sql with parameters of type SQLStatement
 void SQLParserManager.printAST(SQLStatement p_Stmt)
          Prints the SQL source and the abstract syntax tree elements (SQLQueryObject) in the given List of SQLQueryStatements.
 void SQLParseResult.setSQLStatement(SQLStatement stmt)
           
 

Constructors in org.eclipse.datatools.sqltools.parsers.sql with parameters of type SQLStatement
SQLParseResult(SQLStatement stmt, java.util.List errorList)