Jan 23, 2004 #1 TeamGD IS-IT--Management Feb 18, 2001 69 AU When opening a View I get ODBC SQL ServerTimeout expired. What setting can be changed to increase the amount of time? Cheers
When opening a View I get ODBC SQL ServerTimeout expired. What setting can be changed to increase the amount of time? Cheers
Jan 26, 2004 1 #2 SonOfEmidec1100 Technical User Aug 12, 2001 965 AU In summary it will depend on the method of connecting, for example to increase the value to 500 seconds :- DAO use MyDB.QueryTimeout = 500 ADO Command object use MyCmd.CommandTimeOut = 500 ADO recordset object use MyConnection.CommandTimeOut = 500 Upvote 0 Downvote
In summary it will depend on the method of connecting, for example to increase the value to 500 seconds :- DAO use MyDB.QueryTimeout = 500 ADO Command object use MyCmd.CommandTimeOut = 500 ADO recordset object use MyConnection.CommandTimeOut = 500