Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> "WITH" statements and ADO...
Hi there
I'm trying to pass this select statement to Oracle, using ADO (specifically the TADOQuery object in Borland's compiler):
with T1 as (select train_i from train where train_i < 20) select * from T1;
It fails saying the result does not return a dataset set.
It I do this:
select * train_i from train where train_i < 20;
it works fine.
Any clues? I need to be bypass the borland parsing, and although I don't expect many here to know that compiler, perhaps a few clues could help me?
Thanks
Dean Received on Thu May 26 2005 - 22:25:03 CDT
![]() |
![]() |