Hi,
I have following example, where I wan to send to Oracle PL SQL script:
cmd: {
declare
i number;
begin
i := 1;
while i < 11 loop
dbms_output.put_line(to_char(i));
i := i + 1;
end loop;
end;
}
db: open oracle://ble:[EMAIL PROTECTED]
db-port: first db
insert db-port cmd
And it crashes REBOL. I wonder how does it work internally in REBOL?
Does it try to parse the string? Hopefully not? Should REBOL generally
be able to handle such kind of db access?
Thanks,
Petr
--
To unsubscribe from the list, just send an email to
lists at rebol.com with unsubscribe as the subject.