I have a MySQL stored procedure with two OUT parameters as below.
CREATE `GetCourses`(out UG varchar(20),out PG varchar(20))
BEGIN
SELECT course_name into UG FROM test_db.courses where group_id=1;
select course_name into PG from test_db.courses where group_id=2;
END
Now in windows Form, I have two Comboboxes where first combo box should be bind with OUT variable UG and the other combobox should be bind with another OUT variable PG.
How to achieve this using c#?
Thanks in advance.