Add a parameter to this procedure
Parameters: param - to add
buildKey
public static String buildKey(String storedProcedureName, int nbOfParameters)(Code)
Build a unique key based on a stored procedure name and its number of
parameters. Please note that this is enough for some DBMS: Postgresql 8 for
instance allows full function overloading.
Parameters: storedProcedureName - stored procedure name Parameters: nbOfParameters - number of parameters a String representation of the key (used by HashMap in schema)
Two DatabaseProcedure are considered equal if they have the
same name and the same parameters.
Parameters: other - the object to compare with true if the DatabaseProcedures are equal