I want to write out data to two tables at the same time… a Header and a Detail.
A Simple Example:
(PK) = Primary Key, AutoNumber field in MySQL
Schema:
Header = RecNbr(PK), Name
Detail = RecNbr(PK),HeaderRecNbr, FavColor
So when I write data I want to create a record in the header, then use its RecNbr to write the detail record(s).
What is the best method to do this, when multiple users will be adding records from the same application at the same time?
Thanks!