Uses of Interface
io.ebean.CallableSql
| Package | Description |
|---|---|
| io.ebean |
-
Uses of CallableSql in io.ebean
Methods in io.ebean that return CallableSql Modifier and Type Method Description CallableSqlCallableSql. addModification(String tableName, boolean inserts, boolean updates, boolean deletes)Add table modification information to the TransactionEvent.CallableSqlCallableSql. bind(int position, Object value)Bind a parameter that is bound as a IN parameter.CallableSqlDatabase. createCallableSql(String callableSql)Create a CallableSql to execute a given stored procedure.static CallableSqlDB. createCallableSql(String sql)Create a CallableSql to execute a given stored procedure.static CallableSqlEbean. createCallableSql(String sql)Deprecated.Create a CallableSql to execute a given stored procedure.CallableSqlCallableSql. registerOut(int position, int type)Register an OUT parameter.CallableSqlCallableSql. setLabel(String label)Set the label that is put in the transaction log.CallableSqlCallableSql. setParameter(int position, Object value)Bind a positioned parameter (same as bind method).CallableSqlCallableSql. setSql(String sql)Set the callable sql.CallableSqlCallableSql. setTimeout(int secs)Set the statement execution timeout.Methods in io.ebean with parameters of type CallableSql Modifier and Type Method Description intDatabase. execute(CallableSql callableSql)For making calls to stored procedures.intDatabase. execute(CallableSql callableSql, Transaction transaction)Execute explicitly passing a transaction.static intEbean. execute(CallableSql callableSql)Deprecated.For making calls to stored procedures.