Uses of Class
org.h2.engine.Procedure

Packages that use Procedure
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
 

Methods in org.h2.command.dml with parameters of type Procedure
 void ExecuteProcedure.setProcedure(Procedure procedure)
           
 

Uses of Procedure in org.h2.engine
 

Methods in org.h2.engine that return Procedure
 Procedure Session.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
 void Session.addProcedure(Procedure procedure)
          Add a procedure to this session.