Access9001
Registered User.
- Local time
- Yesterday, 17:35
- Joined
- Feb 18, 2010
- Messages
- 268
I have the following
dim rst as adodb.recordset
set rst = new adodb.recordset
rst.open "select * from officeTemp", currentproject.connection
But the problem is that rst now possesses a set that is, say, 50 entries long. If I open up "select * from officeTemp" manually in Access, it shows 42 records (and correctly excludes 8 records as denoted in the criteria of the query).
Why is this happening?
dim rst as adodb.recordset
set rst = new adodb.recordset
rst.open "select * from officeTemp", currentproject.connection
But the problem is that rst now possesses a set that is, say, 50 entries long. If I open up "select * from officeTemp" manually in Access, it shows 42 records (and correctly excludes 8 records as denoted in the criteria of the query).
Why is this happening?