Normally would use recordset to insert information into a table in MS ACCESS
Example:
How would I do that using SQL? would this example work? If not please show me how to perform this task..
I assume that I would still have to connect to the database using something like ADODB
Newbie in search of knowledge
Example:
Code:
rs.addnew
rs("PatientID") = Forms!frmPatientDemographics!PatientID
rs.update
How would I do that using SQL? would this example work? If not please show me how to perform this task..
Code:
INSERT INTO tblBloodworkResults (PatientID)
VALUES (Forms!frmPatientDemographics!PatientID)
I assume that I would still have to connect to the database using something like ADODB
Newbie in search of knowledge