Hello
Is this supported?
$g-select_command = "CALL get_project_list($c_id);";
I used a complex dataset and my stored procedure work on temporary tables that is deleted at the end of the procedure.
BR Lars
1 Answers
Hi,
Currently not supported. The SQL query is used with LIMIT (pagination part) and WHER (filter part) clauses, which does not seems to be doable with procedure call.
You can fill array with the data returned from SP, and load grid with that array. (refer e.g. demos/loading/load-array)
Your Answer