Hi
I have a strange question about ADO performance:
I have a program in Visual Basic 6.0, that connects to Pervasive.SQL via
DSN, and then executes "select * from bd". Then, it slides through
Recordset:
While Not oRS.EOF
' processing part
oRS.MoveNext
Wend
And I have another program, that does exactly the same (it is different in
many ways, but at the database part, it does the same). I don't know if it's
important, but it's much bigger, than the first program.
The problem is, that the first program processes the table in 23-24 seconds,
while the other in 39-40 seconds!
I don't know, what's going on - I even removed everything except core While
loop with oRS.MoveNext command. I also checked the .vbp files, and don't see
anything strange, or different between these files.
Did someone had such problem already?