I am using Access as a frontend for a MySQL 5.0 database. I have created a stored procedure on the MySQL server, that returns one row consisting of two columns, from a table consisting of nearly 5,000 records. I'll take these 2 fields, and place the values into a form.
I need to run the procedure ~30 times, but that part of the code is the same as elsewhere, My only problem, is I can't figure out how to call the stored procedure, and pass the 4 parameters to the procedure it needs to fetch the minute ammount of data.
From MySQL it's called by
MySQL> Call IsCurrent('FirstName','LastName','Company','Item');
How do I call this stored procedure from within Access?
I need to run the procedure ~30 times, but that part of the code is the same as elsewhere, My only problem, is I can't figure out how to call the stored procedure, and pass the 4 parameters to the procedure it needs to fetch the minute ammount of data.
From MySQL it's called by
MySQL> Call IsCurrent('FirstName','LastName','Company','Item');
How do I call this stored procedure from within Access?