As an example:
I have two tables in firebird:
TB_CUSTOMER
- IDCUSTOMER (autoincrement generator)
- CUSTOMERNAME
TB_PHONE
- IDPHONE
- IDCUSTOMER (foreing key from TB_CUSTOMER)
- PHONE
I have a registration form developed in Delphi. The table data TB_PHONE are handled using a dbgrid. I can not assign the value of the field IDCUSTOMER in TB_PHONE, because it was not generated by the Firebird generator. How can I make the relationship between the tables? I want to implement it without first saving the table data TB_CUSTOMER. I'm using datamodules with IBDAC.
Any sugest?
Before detail table can be inserted into, you should have PK-index over master-table updated and having proper master-ID in it. That means that some piece of code should insert master-record before inserting detail-record. Where this piece of code would be - is only limited by your fantasy. Few arrangements include
insert the master-row in your application. Read the id of the row. Insert detail-row using this id.
read ID from then Generator, then insert both rows (master 1st) using the obtained ID
create a
stored procedure
, inserting both rows and returning ID (implementing #1 or #2 server-side)use
EXECUTE BLOCK
- basically ad hoc anonymous SQL procedure. But that only is available in FB 2.x and except for not using namespace it is inferior to #3.add
BEFORE INSERT
trigger onto detail table, searching for ID in master and adding one if not found. This would slow down all insert operations (even when master-ID already exists - that should be checked), would not be able to fill all other master columns but ID and is potentially dangerous due to hiding application logic problems. But still that can be implemented (though ugly and dirty method)create master-join-detail
VIEW
and addINSERT
trigger for it, propagating the new view-row into both master-table and details-table.et cetera