Microsoft
Software
Hardware
Network
Question : Access 2007 query results different than vba sql results
Hello experts this one really has me stumped.
Access 2007 query results are different than vba sql results.
Query produces one record. This is the correct result.
VBA SQL produces 3 records. There are 3 records in the table.
There are 4 fields in the table.
T_ID is autonumber, indexed, no dups
D_ID is number, indexed, dups ok
The other 2 are text
When the D_ID field in NOT indexed the vba sql produces 1 record, the same as the query.
When the D_ID field IS indexed, the vba sql produces 3 records, the query produces 1 record.
Here is the sql that I ran from the query
==========================
==========
========
SELECT [00_test2].T_ID
FROM 00_test2
WHERE ((([00_test2].LR_Eye)='Lef
t') AND (([00_test2].Tissue_Type)=
'Whole Globe') AND (([00_test2].D_ID)=4793009
12));
==========================
==========
========
Here is the VBA sql
==========================
==========
========
strsql = _
"SELECT [00_test2].T_ID FROM 00_test2 WHERE ( (LR_Eye) = 'Left' AND ((Tissue_Type)= 'Whole Globe') AND ((D_ID)= 479300912)) "
MsgBox ("/............. " & strsql)
Set rst = db.OpenRecordset(strsql)
MsgBox (rst.RecordCount)
rst.Close
==========================
==========
========
Thanks this is making me crazy.
Cliff
Answer : Access 2007 query results different than vba sql results
Try this:
Set rst = db.OpenRecordset(strsql)
rst.MoveLast
MsgBox (rst.RecordCount)
/gustav
Random Solutions
Powershell Script to query a OU with users and update the Last password reset date and Last used date.
use environment special folder to get DllImport
Why is Kaspersky internet security 2010 blocking
www.apple.com
PHP table is pushing content from the PrimaryContent Area to under the footer help?
Concurrent access to javadb
cannot over right a dll file win windows 7
External hard drive won't mount, cannot reformat
Remote Routing and Access Internet
SharePoint Foundations 2010
Encrypting CAD files, Windows Server 2003