connectionString="Data Source=########;Initial Catalog=DowntimeD51;Persist Security Info=True;User ID=#######;Password=########;Connection Timeout=120;Encrypt=False;TrustServerCertificate=False;Network Library=dbmssocn"
I have the above connection string in a vb windows application , This is part of my app config file.
I then have a number of table adapters for connecting my business logic to the database , One of the queries inparticular is a pretty large one and requires extra time to complete however the connection is getting a timeout error. When I checked the adapter connection with Dim connection2 As Int32 = Adapter1.Connection.ConnectionTimeout
This shows the connection time out to be 120 seconds but the timeout is still occuring after 30 seconds.
I was wondering if there was some inheritance rules i am missing or something hopefully someone will notice something i am missing .