Uses of Class
org.teiid.query.sql.proc.Statement
-
Packages that use Statement Package Description org.teiid.query.parser org.teiid.query.sql.proc -
-
Uses of Statement in org.teiid.query.parser
Methods in org.teiid.query.parser that return Statement Modifier and Type Method Description Statement
SQLParser. assignStatement(ParseInfo info)
Statement
SQLParser. delimitedStatement(ParseInfo info)
Statement
SQLParser. statement(ParseInfo info)
-
Uses of Statement in org.teiid.query.sql.proc
Subclasses of Statement in org.teiid.query.sql.proc Modifier and Type Class Description class
AssignmentStatement
This class represents an assignment statement in the storedprocedure language.class
Block
This class represents a group ofStatement
objects.class
BranchingStatement
This class represents a break statement in the storedprocedure language.class
CommandStatement
This class represents a variable assignment statement in the storedprocedure language.class
DeclareStatement
This class represents a statement used to declare variables in the storedprocedure language.class
IfStatement
This class represents an if-else statement in the storedprocedure language.class
LoopStatement
This class represents a loop statement in the storedprocedure language to cursor through a result set.class
RaiseStatement
This class represents a error assignment statement in the storedprocedure language.class
ReturnStatement
This class represents a return statementclass
WhileStatement
This class represents a while statement in the storedprocedure language.Methods in org.teiid.query.sql.proc that return types with arguments of type Statement Modifier and Type Method Description List<Statement>
Block. getExceptionStatements()
List<Statement>
Block. getStatements()
Get all the statements contained on this block.Methods in org.teiid.query.sql.proc with parameters of type Statement Modifier and Type Method Description void
Block. addStatement(Statement statement)
Add aStatement
to this block.void
Block. addStatement(Statement statement, boolean exception)
Method parameters in org.teiid.query.sql.proc with type arguments of type Statement Modifier and Type Method Description void
Block. setExceptionStatements(List<Statement> exceptionStatements)
void
Block. setStatements(List<Statement> statements)
Set the statements contained on this block.Constructors in org.teiid.query.sql.proc with parameters of type Statement Constructor Description Block(Statement statement)
Constructor for Block with a singleStatement
.
-