M
Maury Markowitz
Throughout my code, in hundreds of places, I have code that looks like
this...
Set rstRunner = New ADODB.Recordset
rstRunner.Open theSql, cnn, adOpenStatic, adLockReadOnly
cnn is a globally defined connection string to our sql server. This
works great for the vast majority of our queries, but now I'm making a
report that takes about 45 seconds to generate and it's timing out. So
I did this...
Set cRunner = New ADODB.Connection
cRunner.CommandTimeout = 120 ' 2 minutes, just to be safe
cRunner.Open cnn
Set rstRunner = New ADODB.Recordset
Set rstRunner.ActiveConnection = cRunner
rstRunner.Open theSql, cRunner, adOpenStatic, adLockReadOnly
This fails to return any rows. I tried it both with and without the
ActiveConnection line. Can anyone offer any advice?
Maury
this...
Set rstRunner = New ADODB.Recordset
rstRunner.Open theSql, cnn, adOpenStatic, adLockReadOnly
cnn is a globally defined connection string to our sql server. This
works great for the vast majority of our queries, but now I'm making a
report that takes about 45 seconds to generate and it's timing out. So
I did this...
Set cRunner = New ADODB.Connection
cRunner.CommandTimeout = 120 ' 2 minutes, just to be safe
cRunner.Open cnn
Set rstRunner = New ADODB.Recordset
Set rstRunner.ActiveConnection = cRunner
rstRunner.Open theSql, cRunner, adOpenStatic, adLockReadOnly
This fails to return any rows. I tried it both with and without the
ActiveConnection line. Can anyone offer any advice?
Maury