R
rbalfe
I am using c# to access a SQLCE database using SqlCeDataReader
I have placed the read function in a while loop:
while(myReader.Read())
{
do someting...
}
I am using a database with 20,000 records and if I do a read of approx
40. When my loop comes around for the 41st time it hangs for about 15
seconds on the while statement and then jumps out of the loop.
Has anyone come across this before?
Has anyone any idea on how to fix this problem?
Thanks in advance
I have placed the read function in a while loop:
while(myReader.Read())
{
do someting...
}
I am using a database with 20,000 records and if I do a read of approx
40. When my loop comes around for the 41st time it hangs for about 15
seconds on the while statement and then jumps out of the loop.
Has anyone come across this before?
Has anyone any idea on how to fix this problem?
Thanks in advance