From 5ac0ca6af1818e29dd14452ecb8b8af69c5cd7c1 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Thu, 21 Sep 2006 23:24:41 +0000 Subject: [PATCH] Twould help if we actually documented how the new features in res_odbc actually work. (Oops) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43464 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- configs/res_odbc.conf.sample | 12 +++++++++++- res/res_odbc.c | 3 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/configs/res_odbc.conf.sample b/configs/res_odbc.conf.sample index 59d5c68c36..2642676bfd 100644 --- a/configs/res_odbc.conf.sample +++ b/configs/res_odbc.conf.sample @@ -24,7 +24,17 @@ username => myuser password => mypass pre-connect => yes - +; Certain servers, such as MS SQL Server and Sybase use the TDS protocol, which +; limits the number of active queries per connection to 1. By setting up pools +; of connections, Asterisk can be made to work with these servers. +[sqlserver] +enabled => no +dsn => mickeysoft +pooling => yes +limit => 5 +username => oscar +password => thegrouch +pre-connect => yes diff --git a/res/res_odbc.c b/res/res_odbc.c index 7b7b2cc129..444e4f4d54 100644 --- a/res/res_odbc.c +++ b/res/res_odbc.c @@ -235,7 +235,8 @@ static int load_odbc_config(void) limit = 0; for (v = ast_variable_browse(config, cat); v; v = v->next) { if (!strcasecmp(v->name, "pooling")) { - pooling = 1; + if (ast_true(v->value)) + pooling = 1; } else if (!strcasecmp(v->name, "limit")) { sscanf(v->value, "%d", &limit); if (ast_true(v->value) && !limit) {