I cant seem to figure out/remember how to get nUserNo into other tables in a similar script to this:
insert into account.dbo.tUser (sUserID, sUserPW, sUserName, bIsBlock, bIsDelete, nAuthID, sUserIP)
Values ('email', 'password', 'email', '0', '0', '9', '127.0.0.1')
insert into account.dbo.tMinorsPlaytime (nUserNo, bIsAdult, nPlaytime) values (?, '1', '1')
Insert into account.dbo.tUserOption (nUserNo, sEmail, sPhoneNo, bistext, nZipNo, sAddress, bIsMail, sAge, sIsReferred,sFirstName, sLastName)
Values (?, 'Email', '1-555-555-5555', '1', '95006', '123 Street Name', '0', '24', '0', 'First', 'Last')
as i would like this to be all one form.

