DML Issue in QUERY_ONLY Form
I know that when I call a form (e.g. using call_form) I can set the mode to QUERY_ONLY so that users cannot insert/delete/update records in called form. My question is if I issue a DML statement in a procedure e.g.
begin
insert into table_name values (value1, value2,...);
commit;
end;
Would above DML statement insert values in to the table?
Thanks in advance!
0