Uses of Class
gudusoft.gsqlparser.stmt.oracle.TPlsqlStmt

Packages that use TPlsqlStmt
gudusoft.gsqlparser.stmt.oracle   
 

Uses of TPlsqlStmt in gudusoft.gsqlparser.stmt.oracle
 

Subclasses of TPlsqlStmt in gudusoft.gsqlparser.stmt.oracle
 class TPlsqlAssignStmt
          The assignment statement sets the current value of a variable, field, parameter, or element that has been declared in the current scope.
 class TPlsqlBasicStmt
          Includes some basic expression statement in plsql.
 class TPlsqlCaseStmt
          The CASE statement chooses from a sequence of conditions, and execute a corresponding statement.
 class TPlsqlCloseStmt
          The CLOSE statement closes a cursor or cursor variable, thereby allowing its resources to be reused.
 class TPlsqlCreateType
          The CREATE TYPE statement creates or replaces
 class TPlsqlCreateType_Placeholder
          This class is a placeholder for CREATE TYPE statement.
 class TPlsqlCursorDeclStmt
          Represents cursor related statement, including:
 class TPlsqlDummyStmt
           
 class TPlsqlElsifStmt
          Represents ELSEIF ...
 class TPlsqlExitStmt
          The EXIT statement exits a loop and transfers control to the end of the loop.
 class TPlsqlFetchStmt
          The FETCH statement retrieves rows of data from the result set of a multiple-row query.
 class TPlsqlForallStmt
          The FORALL statement issues a series of static or dynamic DML statements, usually much faster than an equivalent FOR loop.
 class TPlsqlGotoStmt
          The GOTO statement branches unconditionally to a statement label or block label.
 class TPlsqlIfStmt
          The IF statement executes or skips a sequence of statements, depending on the value of a Boolean expression
 class TPlsqlNullStmt
           
 class TPlsqlOpenforStmt
          The OPEN-FOR statement executes the SELECT statement associated with a cursor variable.
 class TPlsqlOpenStmt
          The OPEN statement executes the query associated with a cursor.
 class TPlsqlPipeRowStmt
           
 class TPlsqlPragmaDeclStmt
           
 class TPlsqlProcedureSpecStmt
           
 class TPlsqlRaiseStmt
          The RAISE statement stops normal execution of a PL/SQL block or subprogram and transfers control to an exception handler.
 class TPlsqlRecordTypeDefStmt
          A record is a composite variable that can store data values of different types.
 class TPlsqlReturnStmt
          The RETURN statement immediately completes the execution of a subprogram and returns control to the invoker
 class TPlsqlSqlStmt
           
 class TPlsqlStatement
           
 class TPlsqlSubProgram
           
 class TPlsqlTableTypeDefStmt
          A collection groups elements of the same type in a specified order.
 class TPlsqlVarDeclStmt
          Represents declare statement that used to decalre variable, constant, exception and subtype.
 class TPlsqlVarrayTypeDefStmt
          A collection groups elements of the same type in a specified order.