Thanks
I figured this out later in the day. I will
go and hide under a rock now.
Late nights, cut paste and edit tut, tut.
As an aside, does anyone know why when I try
to use TOracleSession.CheckConnection(true)
in my program and then unplug my network
connection the program just dies...
Hi
I have created a package in Oracle 9i that contains:
procedure xyz (p_cursor in out ref_cursor)
as
begin
open p_cursor for
select
t.sqid
from
table_t t
where
(systimestamp - t.last_contact) > interval '1' minute;
end;
where ref_cursor is defined in the...