What causes this error message during startup?
Stored procedure 'proc_application_startup' generated an error while deriving the parameters.
Information:
Parameter 0 - project_id (project_id):
An SqlParameter with ParameterName '@project_id' is not contained by this SqlParameterCollection.
Parameter 1 - message (message):
An SqlParameter with ParameterName '@message' is not contained by this SqlParameterCollection.
Solved
'proc_application_startup' generated an error while deriving the parameters
Best answer by Vincent Doppenberg
You have configured a startup procedure with the name 'proc_application_startup' for your application by means of the 'startupprocedure' setting. This procedure will be called by the GUI when the application is started. Startup procedures have two mandatory parameters called 'project_id' and 'message'. The error message that you see will occur when the configured procedure on the database does not have these parameters.
View originalThis topic has been closed for comments
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.