R
Rita
I have a recordset:
set rst = dbs.OpenRecordset(sql)
sql = "select key from query1"
where query1 is a query based on tables in the database.
Now I exported all tables to a back-end - and then
suddenly the OpenRecordset(sql) fails with error code
3061 - as described in my post of earlier today.
If I select from one of the linked tables directly, it
works - but selecting from a query based on linked tables
makes it fail. The reason for the intermediate query is to
force some joins to happen the right way.
Any solution to this? (besides creating a local table with
the data of query1)
set rst = dbs.OpenRecordset(sql)
sql = "select key from query1"
where query1 is a query based on tables in the database.
Now I exported all tables to a back-end - and then
suddenly the OpenRecordset(sql) fails with error code
3061 - as described in my post of earlier today.
If I select from one of the linked tables directly, it
works - but selecting from a query based on linked tables
makes it fail. The reason for the intermediate query is to
force some joins to happen the right way.
Any solution to this? (besides creating a local table with
the data of query1)