'Connection Timeout'에 해당되는 글 1건

  1. 2007/04/11 ASP의 DB Connection Timeout
Dev & Mng2007/04/11 16:15
Connection에 대한 Timeout 설정
    With oDbCon
        .CommandTimeout = 600
        .ConnectionTimeout = 600
        .Open strConnect
    End With


Command 객체에 대한 Timeout설정
    With oCmd
       .ActiveConnection = oDbCon
       .CommandType = &H0001
       .CommandText = qry
       .CommandTimeout = 600
       .Execute
   End With
Creative Commons License
Creative Commons License

'Dev & Mng' 카테고리의 다른 글

Gleam™님의 미투데이 - 2007년 4월 17일  (0) 2007/04/18
ASP의 DB Connection Timeout  (0) 2007/04/11
PowerShell Links  (0) 2007/03/31
Hotfix 설치 하지 않고 압축만 풀기  (0) 2007/03/27
Posted by Gleam™