Hi,
I have this really strange problem that has never happened before.
I open the DAO recordset:
Set rstCalls = CurrentDb.OpenRecordset("Select * From Calls Where SerialNumber = '500'")
I know for sure that the recordset should return 6 records and it always returns just 1
If I change the sql to "Select Count(*) as Cnt from Calls where SerialNumber = '500'" then the value of Cnt returned is equal to 6.
Can anyone suggest any possible reasons of why the recordset only returns 1 record in the first case
Thanks.
I have this really strange problem that has never happened before.
I open the DAO recordset:
Set rstCalls = CurrentDb.OpenRecordset("Select * From Calls Where SerialNumber = '500'")
I know for sure that the recordset should return 6 records and it always returns just 1
If I change the sql to "Select Count(*) as Cnt from Calls where SerialNumber = '500'" then the value of Cnt returned is equal to 6.
Can anyone suggest any possible reasons of why the recordset only returns 1 record in the first case
Thanks.