Interface CallableStatementCreator

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String createCall​(java.lang.String procedureName, int parameterCount)
      Create a CallableStatement String suitable for the database in question.
    • Method Detail

      • createCall

        java.lang.String createCall​(java.lang.String procedureName,
                                    int parameterCount)
        Create a CallableStatement String suitable for the database in question.
        Parameters:
        procedureName - the procedure name
        parameterCount - The number of parameters for this stored procedure call.
        Returns:
        a String similar to { CALL my_stored_procedure(?, ?, ?); } depending on the database.