Reputation: 72
In Yii Framework I call SQL procedure getData() and I got multiple result sets using following code.
$resultSets = Yii::app()->db->createCommand("call getData()")->query();
How can I get total count of result sets which I got in $resultSets. Any other suggestion so I can loop this as per result sets count.
Follow this for details My Procedure which generate result sets
Upvotes: 1
Views: 302