Uses of Class
org.h2.engine.Procedure
-
Packages that use Procedure Package Description org.h2.command.dml Contains DML (data manipulation language) and related SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. -
-
Uses of Procedure in org.h2.command.dml
Fields in org.h2.command.dml declared as Procedure Modifier and Type Field Description private Procedure
ExecuteProcedure. procedure
Methods in org.h2.command.dml with parameters of type Procedure Modifier and Type Method Description void
ExecuteProcedure. setProcedure(Procedure procedure)
-
Uses of Procedure in org.h2.engine
Fields in org.h2.engine with type parameters of type Procedure Modifier and Type Field Description private java.util.HashMap<java.lang.String,Procedure>
SessionLocal. procedures
Methods in org.h2.engine that return Procedure Modifier and Type Method Description Procedure
SessionLocal. getProcedure(java.lang.String name)
Get the procedure with the given name, or null if none exists.Methods in org.h2.engine with parameters of type Procedure Modifier and Type Method Description void
SessionLocal. addProcedure(Procedure procedure)
Add a procedure to this session.
-