up vote 0 down vote favorite
share [g+] share [fb]

I'm at a loss to explain this one:

I'm getting an error "91" (Object or With block not set) on the second line below:

Dim rs As DAO.Recordset

Set rs = CurrentDb.OpenRecordset("SELECT * FROM employees")

The following also causes it: Set rs = CurrentDb.OpenRecordset("employees")

Executing ?CurrentDb.Name alone in the immediate window causes the error as well.

Now, clearly the database is open since I'm editing the form within it, so what can cause this error here?

link|improve this question

What's between the parens for OpenRecordset? – Patrick Cuff Jan 6 '09 at 20:38
Patrick is on the right track. Can you provide the entire line of code. I think it is probably related to the OpenRecordset failing. You could also test in the command window to confirm what you think is happening is really happening ?Access.Application.currentdb is nothing – JohnFx Jan 6 '09 at 20:51
Is this code in a module, or on a form or other? Are you working with an ADP project, or plain vanilla Access database? – Patrick Cuff Jan 8 '09 at 14:45
feedback

4 Answers

up vote 4 down vote accepted

If you are working with an ADP project, you should use CurrentProject instead of CurrentDB.

link|improve this answer
Not only will you need to use CurrentProject with an ADP, but you'll need to use the entire ADODB module to interact with the database. A starting point: support.microsoft.com/kb/281998. – David Faivre Mar 13 '11 at 15:29
feedback

you should assign your .openRecordset method to a dao.recordset object or a generic object ('late binding' technique). try something like this:

dim rs as dao.recordset
set rs = currentDb.openRecordset(your SELECT instruction,...)
link|improve this answer
feedback

Try creating a database object and using that instead of the CurrentDb reference. For example:

Dim db As DAO.Database
Dim rs As DAO.Recordset

Set db = CurrentDb
Set rs = db.OpenRecordset("SELECT * FROM Employees")
link|improve this answer
feedback

The reason l suspect the code will not work is that according to M/Soft link text 'CurrentDb' is a method which will return an 'object variable of type Database'. So the code shown by Forester93 should work. Its what l would use and have been using for many years now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.