aboutsummaryrefslogtreecommitdiffstats
path: root/configs/res_odbc.conf.sample
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-23 20:57:40 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-23 20:57:40 +0000
commit684d437a64a05ac0ad5c75ec4f9bdab7793a4202 (patch)
tree6b64cff98de3cb4aa31a882dc80e7cd262bdf772 /configs/res_odbc.conf.sample
parent4f98d84c95bdb424b1e4263dc841f9a2434dd5f5 (diff)
Merged revisions 170720 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r170720 | mmichelson | 2009-01-23 14:56:07 -0600 (Fri, 23 Jan 2009) | 16 lines Merged revisions 170719 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r170719 | mmichelson | 2009-01-23 14:55:26 -0600 (Fri, 23 Jan 2009) | 8 lines Add notes to the idlecheck explanation in res_odbc.conf.sample (closes issue #14319) Reported by: klaus3000 Patches: patch_idlecheck_res_odbc.conf.sample.txt uploaded by klaus3000 (license 65) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@170722 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs/res_odbc.conf.sample')
-rw-r--r--configs/res_odbc.conf.sample5
1 files changed, 5 insertions, 0 deletions
diff --git a/configs/res_odbc.conf.sample b/configs/res_odbc.conf.sample
index c40b47e3e..f2c6bf015 100644
--- a/configs/res_odbc.conf.sample
+++ b/configs/res_odbc.conf.sample
@@ -33,6 +33,11 @@ pre-connect => yes
; On some databases, the connection times out and a reconnection will be
; necessary. This setting configures the amount of time a connection
; may sit idle (in seconds) before a reconnection will be attempted.
+; Note: The reconnection is not done in the background, but is triggered by
+; a new query. Thus, if you set idlecheck => X, every time you perform a
+; query res_odbc will check how long these connection was idle, and if it was
+; idle for more than X seconds it will close the current connection and
+; establish a new one even if the current connection is still working.
;idlecheck => 3600
; Certain servers, such as MS SQL Server and Sybase use the TDS protocol, which