in reply to Re: multiple "newline" delimiters
in thread multiple "newline" delimiters
As you can see, those types of PL/SQL statements have multiple ';'s but are technically one statement. But I've got a messy work-around where I match up begins and ends for that. Just so people know what problem I'm working with, here's some sample data:create or replace procedure myProc as begin select * from whatever; end;
delete from mytable where my_id='12345' / insert into anothertable values ('123456','somedata'); /
|
|---|