Hello,
I am making a site where employees can signup on the intranet for a work order account. They enter their id, pwd, name, and work area, along with as many phone numbers (fax, cell, pager, etc) as they like....to do that, I made a seperate table for phone info linked by their pk in their member table and a foreign key field in the phone table.
problem:
There isn't enough time or space to write out the entire problem, however, upon checking to see if the id they want is already takin, if it's not it will enter it in the db, and then next see what the pk is where it was entered so they can continue entering the info...I'd rather not do it this way, I'd rather submit it to the db all at once (at least the main info)....but I need the pk for the phone info...
question:
Is there a way to check for the pk at the same time as appending the information to the table rather than having to go back again and look it up? (PK = autonumber, and multiple people could be submitting info at same time).
Thanks for your help in advance... -Ovatvvon :-Q
I am making a site where employees can signup on the intranet for a work order account. They enter their id, pwd, name, and work area, along with as many phone numbers (fax, cell, pager, etc) as they like....to do that, I made a seperate table for phone info linked by their pk in their member table and a foreign key field in the phone table.
problem:
There isn't enough time or space to write out the entire problem, however, upon checking to see if the id they want is already takin, if it's not it will enter it in the db, and then next see what the pk is where it was entered so they can continue entering the info...I'd rather not do it this way, I'd rather submit it to the db all at once (at least the main info)....but I need the pk for the phone info...
question:
Is there a way to check for the pk at the same time as appending the information to the table rather than having to go back again and look it up? (PK = autonumber, and multiple people could be submitting info at same time).
Thanks for your help in advance... -Ovatvvon :-Q