Passing object from PHP to Mysql Stored procedure
- by user268982
Hi All,
Scenario :- I have to call MYSQL stored procedure from PHP and do some operations ( around 15 commands ) on the database
Problem :- I have to call stored procedure with 36 parameters. Lot of parameters . I don't think it is a good idea to pass these many individual parameters and even heard passing individul parameters increases network traffic.
Looking for :- I created a Data Object at PHP side and is there any way I can create similar kind of Object in MYSQL and pass this object as a parameter and extract the data from the object in MYSQL stored procedure
Thanks for your help
Regards
Kiran