Wallegator
Programmer
This has been driving me crazy for hours. I have a VB app which needs to add and modify records to an Access database. I originally created it to an SQL database but needed to switch to Access 97 for demo purposes. Works fine with SQL. Records are adding fine with Access 97. When I go to update a record to Access 97 the data disappears. If I attempt to move from record to record I am getting a query overflow error. My connection string reads:
adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=C:\Databases\Visual Basic\EstimatingTracking\esttracking.mdb;Persist Security Info=False"
adodc1.RecordSource = "Select * From dbo_tblProjects WHERE BusinessUnit='RGG'"
I have an update statement on the unload property of the form.
adodc1.Recordset.UpdateBatch
What am I missing ... a reference or a component ... wrong jet?
Thank you in advance for any help provided.
adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=C:\Databases\Visual Basic\EstimatingTracking\esttracking.mdb;Persist Security Info=False"
adodc1.RecordSource = "Select * From dbo_tblProjects WHERE BusinessUnit='RGG'"
I have an update statement on the unload property of the form.
adodc1.Recordset.UpdateBatch
What am I missing ... a reference or a component ... wrong jet?
Thank you in advance for any help provided.