Subject [IBO] Foregn Key Problem
Author Jack Cane
My FB database has a number of one-on-many relationships with auto-numbering
triggers for all primary keys and foreign-key constraints to parent tables,
where needed. I am populating the tables from an Access MDB using SQL select
(from MDB) and insert (to FB) queries.

I use Delphi 6 running under Win2k Pro SP2. The FB structures were created
using IBWB v. 1.3.1. For the MDB selects I am using a tQuery hooked to a
tDataSource and Access ODBC driver, For the FB Inserts I use a tIboQuery
hooked to tDataSource and tIboDatabase. Use of a datapump is not possible
because the table structure of the MDB differs from that of the FB. I am
parsing some of the MDB data columns prior to inserting the data.

All of the Insert queries tested so far, including four tables containing
foreign-key constraints, are working, except one, which generates an error
when I attempt to insert a second record.

The error is: exception class EIBO_ISCError with message 'ISC ERROR
CODEE:335544466. ISC ERROR MESSAGE: violation of FOREIGN KEY constraint
"name" on table "name" statement: TIBOInternalDataset: "<TApplication>.form
name.query name".

There is no apparent difference between this FK relationship and the other
four, which accept inserts error-free.

I am trapping SQL errors with a try...except surrounding the tIboQuery open
statement, but that does not catch the IBO error. I would like to understand
how to trap the foreign key error.

Would also like to have an idea of how to diagnose the foreign key error and
fix it.

tks,

jwc