I'm struggling with a similar problem: a multi-user database, with "Autonumber ed" primary key. When user 'a' adds a record, how does she retrive the actual PK entered? We can NOT assume it's the latest record added, because other users are adding records at nearly the same time.
How handy it'd be if dataadapter.ins ert would return a reliable vector of key(s) for the record(s) added.
Is there any other way? Or must I just do a selection on every field I've just entered? "Select * from MyTbl where fld1=MyFld1 and fld2 = MyFld2 and ... "
???
Thanks,
S
How handy it'd be if dataadapter.ins ert would return a reliable vector of key(s) for the record(s) added.
Is there any other way? Or must I just do a selection on every field I've just entered? "Select * from MyTbl where fld1=MyFld1 and fld2 = MyFld2 and ... "
???
Thanks,
S
Comment