Jaroslav Petrusevic wrote on Monday 22nd of August 2011:Hello, not sure about this, but you can try:
$result = \DB::query('CALL get_activities()', \DB::SELECT)
->execute(); in this way you tell DB class that it is a select, try playing with it
$result = \DB::query('CALL get_activities()', \DB::SELECT) ->execute(); $result = \DB::query('CALL get_another()', \DB::SELECT) ->execute();
I wonder if this is a bug in fuelphp or is there something I am missing? Thanks and regardsThis can happen, for example, if you are using mysql_use_result() and try to execute a new query before you have called mysql_free_result(). It can also happen if you try to execute two queries that return data without calling mysql_use_result() or mysql_store_result() in between.
It looks like you're new here. If you want to get involved, click one of these buttons!