ODBC Timeout |
4/12/2004 10:30:08 AM |
ASPRunnerPro General questions | |
D
dan_vt author
Good morning from the chilly mountains of central Vermont. |
|
![]() |
Sergey Kornilov admin 4/12/2004 |
Dan, function setupRs(strConnection,strSQL,nPageSize) Err.Clear Set setupRs = server.CreateObject ("ADODB.Recordset") set dbConnection = server.CreateObject ("ADODB.Connection") dbConnection.ConnectionString = strConnection dbConnection.ConnectionTimeout = 120 dbConnection.CommandTimeout = 120 dbConnection.Open Call ReportError
|
D
|
dan_vt author 4/12/2004 |
Indeed Sergey, that fixed the problem. |
![]() |
Sergey Kornilov admin 4/12/2004 |
Dan, |