Uses of Interface
io.ebean.CallableSql
Packages that use CallableSql
-
Uses of CallableSql in io.ebean
Methods in io.ebean that return CallableSqlModifier and TypeMethodDescriptionCallableSql.addModification
(String tableName, boolean inserts, boolean updates, boolean deletes) Add table modification information to the TransactionEvent.Bind a parameter that is bound as a IN parameter.Database.createCallableSql
(String callableSql) Create a CallableSql to execute a given stored procedure.static CallableSql
DB.createCallableSql
(String sql) Create a CallableSql to execute a given stored procedure.CallableSql.registerOut
(int position, int type) Register an OUT parameter.Set the label that is put in the transaction log.CallableSql.setParameter
(int position, Object value) Bind a positioned parameter (same as bind method).Set the callable sql.CallableSql.setTimeout
(int secs) Set the statement execution timeout.Methods in io.ebean with parameters of type CallableSqlModifier and TypeMethodDescriptionint
Database.execute
(CallableSql callableSql) For making calls to stored procedures.int
Database.execute
(CallableSql callableSql, Transaction transaction) Execute explicitly passing a transaction.