i want to call saved sql procedure from java using ebean. i am using this code:
String sql = "call copy_lov_Countries(?)";
CallableSql cs = Ebean.createCallableSql(sql);
cs.registerOut(1, Types.INTEGER);
Ebean.execute(cs);
It reaches the procedure but it does not run right. it never copies any data!!
any idea??