timeout expired

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • skdesh
    New Member
    • Jun 2007
    • 9

    timeout expired

    while updating MS_SQL query from VB its giving message like this "Timeout Expired"
  • ansumansahu
    New Member
    • Mar 2007
    • 149

    #2
    Originally posted by skdesh
    while updating MS_SQL query from VB its giving message like this "Timeout Expired"
    Hi ,

    Check whats the default timeout that is set. Then increase it accordingly. Also are you able to execute the query on the query analyzer sucessfully or does it throw a time out exception.

    good luck
    -ansuman sahu

    Comment

    • skdesh
      New Member
      • Jun 2007
      • 9

      #3
      Originally posted by ansumansahu
      Hi ,

      Check whats the default timeout that is set. Then increase it accordingly. Also are you able to execute the query on the query analyzer sucessfully or does it throw a time out exception.

      good luck
      -ansuman sahu
      thanks for repl
      From Query Analyzer its work but from Updating thru VB its giving this error

      Comment

      • Shubhadapp
        New Member
        • Jul 2007
        • 1

        #4
        how to check the default timeout visual basic

        Comment

        • skdesh
          New Member
          • Jun 2007
          • 9

          #5
          Loading Java Applet Failed Pl Help Me

          Comment

          • QVeen72
            Recognized Expert Top Contributor
            • Oct 2006
            • 1445

            #6
            Hi,

            U must have connected to the database using ADO Objects. Change the ADO Connection object's ConnectionTimeo ut to some higher value:

            [code=vb]
            AConn.Connectio nTimeout = 200
            [/code]

            If executing query on Command Object then change :
            .CommandTimeout


            REgards
            Veena

            Comment

            Working...