H2: How to create a stored procedure with out parameters
问题 I am attempting to create a stored procedure with out parameters in a JUnit test that is configured with Spring (non-boot). I understand from documentation and examples that I must alias a static method to respond to the stored procedure call. However, I can find no mention of how this works with out parameters. What goes in the method signature of the static method? package com.example; import static java.sql.Types.INTEGER; import java.sql.CallableStatement; import java.sql.ResultSet; import