mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
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
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
|
@@ -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) {
|
||||
|
Reference in New Issue
Block a user