The question is: Why would a recordset be EOF when the source SQL when queried has records.
Immediate window:
Database query source for: Files_To_Parse
returns 1 record. Why is my rst.EOF?
I've compacted and repaired. I'm not sure what's wrong with this.
Thanks for the help!
Randall Vollen
Immediate window:
Code:
?rst.Source
Select path, file_name, missing, password
from Files_To_Parse
?rst.EOF
True
Database query source for: Files_To_Parse
Code:
SELECT Database.*
FROM [Database]
WHERE (((Database.File_Name) Like "*dump*") AND ((Database.Missing)=False) AND ((Database.ErrorNumber) Is Null) AND ((Database.Delete)=False) AND ((Database.Skip)=False))
ORDER BY Database.Path DESC;
returns 1 record. Why is my rst.EOF?
I've compacted and repaired. I'm not sure what's wrong with this.
Thanks for the help!
Randall Vollen