Additional
dbCAP
AnyDAC
ThinDAC
NCOCI8
Topic: master detail
master detail
Posted: 2002/08/08 06:04
 
hi

can anyone give me some example code in master detail relationship using NCOI8?
the best technique? including dml? please?

thanks

fh
RE: master detail
Posted: 2002/08/08 11:35
 
Hello fh !

master-detail in NCOCI8 works exactly, as with BDE's TQuery. So, i will suggest to take a look into Delphi help ...

Regards,
Dmitry
RE: master detail
Posted: 2002/08/09 01:31
 
hi,

I use stored procedure for all tables including select, insert, update and delete statement.

for example:
master table : order
detail tables : order_detail

when client apply update, all tables (order and order_detail) will be sent to oracle as one block data.

in oracle I want to capture this block of data in my stored procedure named order_detail_proc.

the client will only received message that process is successful or not.

thanks

fh