B
B.
I have problem with opening recordset using access query.
Set rst = CurrentDb.OpenRecordset("users", dbOpensnapshot)
"users" is query that uses linked table to SQL 6.5.
I get:
Run time error 3001
Invalid argument
I tried dbSeeChanges, dbReadonly but it didn't work too.
Using dbSeechanges gives error that SQL table has identety column.
Any suggestion?
Maybe to do it in some other way.
Thanks in advance.
B.
Set rst = CurrentDb.OpenRecordset("users", dbOpensnapshot)
"users" is query that uses linked table to SQL 6.5.
I get:
Run time error 3001
Invalid argument
I tried dbSeeChanges, dbReadonly but it didn't work too.
Using dbSeechanges gives error that SQL table has identety column.
Any suggestion?
Maybe to do it in some other way.
Thanks in advance.
B.