my vb.net program hits a SQL server database where the query can take as much as four hours to run.
Right now, it times out on the vb.net side after only 30 seconds.
my call to the database is through a tablehandler.
If V.sSerialNum Is Nothing Then
s.FillAllErrByModel(t, V.sStartDate, V.sEndDate, V.sModel, V.sProduct)
end if
I would much appreciate it if someone could tell me
1)What code to use to extend the timeout time to 4 hours
2)where to place it
thank you.