error message:
you must use the dbseechanges option with openrecordset when accessing a sql server table that has an identity colum
The code:
Dim db As Database
Dim tblDowntime As Recordset
Set db = DBEngine.Workspaces(0).Databases(0)
Set tblDowntime = db.OpenRecordset("dwor_Downtime", dbOpenDynaset)
Any help would be much appreciated
you must use the dbseechanges option with openrecordset when accessing a sql server table that has an identity colum
The code:
Dim db As Database
Dim tblDowntime As Recordset
Set db = DBEngine.Workspaces(0).Databases(0)
Set tblDowntime = db.OpenRecordset("dwor_Downtime", dbOpenDynaset)
Any help would be much appreciated