dbSeeChanges Error with SQL Back End

CPGDeveloper

Board Regular
Joined
Oct 8, 2008
Messages
174
Hi All~

I'm trying to create a recordset in VBA using a SQL linked table and am getting Error 3622 - "You must use dbChanges with the OpenRecordset...."

I tried to add that option but it seems to not make a difference. I have something like this --

Dim usql as string
Dim urs as DAO.Recordset

usql = "SELECT * FROM tbl1 WHERE tbl1.ID = 1;"
Set urs = CurrentDb.OpenRecordset(usql, , dbSeeChanges)

With or without the dbSeeChanges I'm still getting the error -- any help would be greatly appreciated. Thanks!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Does it help if you use:

Code:
Set urs = CurrentDb.OpenRecordset(usql, dbOpenDynaset, dbSeeChanges)
 
Upvote 0
Glad to help. :)
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,150
Members
448,552
Latest member
WORKINGWITHNOLEADER

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top