"SQL statement doesn't return row" error

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Danilkak

"SQL statement doesn't return row" error

Post by Danilkak » Mon 17 Jan 2005 08:01

I use Delphi 5 with Odac 4.50.3.23. This error message appear when i open TOraQuery with following simple text:

Code: Select all

with a as 
(
 select '1' 
 from dual
)
select *
from a

Bagieta
Posts: 21
Joined: Tue 09 Nov 2004 08:02
Location: Poland

Post by Bagieta » Mon 17 Jan 2005 12:11

You must have Oracle 9.x (server and client) to use 'with' statement

Danilkak

I use 9.2 both server and client version

Post by Danilkak » Mon 17 Jan 2005 12:32

I think error occured inside library code, which define mentioned operator how non-select and this error message is not Oracle error message.
SQLPlus execute this query succefully.

Alex
Posts: 655
Joined: Mon 08 Nov 2004 08:39

Post by Alex » Mon 17 Jan 2005 14:21

"With" feature with Net options fixed in ODAC since version 5.10.
Please try ODAC 5.10 available for download from our site.

Post Reply