Hello,
It's possible this?
$h->select_command = "CALL insert_clients";
As you know, CRUD operation would be fastest because will be executed by database management system.
Thank you!
1 Answers
For INSERT, UPDATE, DELETE you can call stored procedures using on_insert, on_update and on_delete event handlers by writing your custom php code in these functions.
You can stop default grid behavior of insert,update,delete as well.
Refer docs: http://www.phpgrid.org/docs/#Grid_Events
Your Answer