Hello,
Please tell me is it possible to use stored procedure for update and delete? and like source for select? it should also support search parameters from grid.
After this job stored procedure will return return value, base on it I want to display message on page.
When some goes wrong changes should me rollback and return will -100.
Is it possible?
Thank you
1 Answers
Stored procedures support for update and delete operations are supported.
However for select operation and stored procedures with parameters are not supported.
For select operation, it is a requirement of grid to use SQL query and we internally construct where clauses for that query based on filtered parameters.
Your Answer