I'm having an intermittent problem with one SQL query.
RecordCount = 1569
The error ALWAYS happens at record 89
I've put in loads of messages and stages, and the record returned before the error is always the same.
I've attached the image of the full DBEngine error structure.
I'd be happier if the error always happened, but it doesn't.
Can anyone help?
ODBC: MERANT
Database: PROGRESS
Database-OS: Unix
App-OS: Windows XP
Code:
Dim GetDN As DAO.Recordset
sSQLStmt = "SELECT ..."
Set GetDN = LeaseDB.OpenRecordset(sSQLStmt)
If GetDN.BOF = False And GetDN.EOF = False Then
GetDN.MoveFirst
Do While Not GetDN.EOF
<code...>
GetDN.MoveNext '<-------- Error s1010 Function Sequence Error
Loop
RecordCount = 1569
The error ALWAYS happens at record 89
I've put in loads of messages and stages, and the record returned before the error is always the same.
I've attached the image of the full DBEngine error structure.
I'd be happier if the error always happened, but it doesn't.
Can anyone help?
ODBC: MERANT
Database: PROGRESS
Database-OS: Unix
App-OS: Windows XP