ORA-01036

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for Oracle in Delphi and C++Builder
Post Reply
Elmoh
Posts: 3
Joined: Mon 21 Feb 2005 01:23

ORA-01036

Post by Elmoh » Mon 21 Feb 2005 01:39

We are using MSSQL driver from Corelab.
Now we are porting our app to Oracle.
We downloaded the Trial Oracle DBExpress driver.
In some forms we have master details relation between table.
The relationship is setup at the clientdataset level using the properties Mastersource and Masterfileds. Wen Opening the master clientdataset it's OK. But when opening the details clientdataset we have the error ORA-01036 error .

NB : develpemt on BCC+ last sp

Thanks in advance for your help

Paul
Posts: 725
Joined: Thu 28 Oct 2004 14:06

Post by Paul » Fri 25 Feb 2005 11:44

It is a common problem for Borland dbExpress. You must write statement with parameters for detail dataset.

Code: Select all

select * from alias
where ALIAS = :ALIAS and SYS_TYPE = :SYS_TYPE

Post Reply