return dataset from stored procedure

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
ercie34
Forum Newbie
Posts: 3
Joined: Sat Jun 27, 2009 8:53 am

return dataset from stored procedure

Post by ercie34 »

hello everybody,

i have a stored procedure in mysql which has sql statement like

"select * from table"

in my table i have 14,000 records,

how can i use this stored procedure in php and how can i make the store return all the records in recordset in php?

thanks in advange
User avatar
McInfo
DevNet Resident
Posts: 1532
Joined: Wed Apr 01, 2009 1:31 pm

Re: return dataset from stored procedure

Post by McInfo »

MySQL Manual: CALL

PHP Manual: Prepared statements and stored procedures

Edit: This post was recovered from search engine cache.
Post Reply