Good morning;
I am updating a table from a form using an ADO recordset. the table is linked to the open database. All I am doing is taking values from a form, and loading them to the table, and closing.
I am using this;
Dim AddAddress As Recordset
Set AddAddress = New ADODB.Recordset
Addtransaction.Open "Select * from TaskTable",CurrentProject.Connection, adOpenKeyset, adLockOptimistic
AddAddress.AddNew
AddAddress!User_ID = UserName
etc....
Rather than using the select * to initialize, is there a way to open a dataset for append only and not select any records?
Thank you very much,
I am updating a table from a form using an ADO recordset. the table is linked to the open database. All I am doing is taking values from a form, and loading them to the table, and closing.
I am using this;
Dim AddAddress As Recordset
Set AddAddress = New ADODB.Recordset
Addtransaction.Open "Select * from TaskTable",CurrentProject.Connection, adOpenKeyset, adLockOptimistic
AddAddress.AddNew
AddAddress!User_ID = UserName
etc....
Rather than using the select * to initialize, is there a way to open a dataset for append only and not select any records?
Thank you very much,