aboutsummaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-08 23:32:08 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-08 23:32:08 +0000
commitab0c7cb5550510966afcab50bc0e43858ca0710e (patch)
treee814626ec06456061ff9bdcafb6cd946254bb3d4 /configs
parent64d6bb73dbd4278d7bea66d67845f035d638ef68 (diff)
Documenting two keywords that were previously missing
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@7404 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs')
-rw-r--r--configs/res_odbc.conf.sample21
1 files changed, 16 insertions, 5 deletions
diff --git a/configs/res_odbc.conf.sample b/configs/res_odbc.conf.sample
index 6b162a644..59d5c68c3 100644
--- a/configs/res_odbc.conf.sample
+++ b/configs/res_odbc.conf.sample
@@ -1,17 +1,28 @@
;;; odbc setup file
+; ENV is a global set of environmental variables that will get set.
+; Note that all environmental variables can be seen by all connections,
+; so you can't have different values for different connections.
+[ENV]
+INFORMIXSERVER => my_special_database
+INFORMIXDIR => /opt/informix
+
+; All other sections are arbitrary names for database connections.
+
[asterisk]
+enabled => yes
dsn => asterisk
;username => myuser
;password => mypass
pre-connect => yes
-;[mysql2]
-;dsn => MySQL-asterisk
-;username => myuser
-;password => mypass
-;pre-connect => yes
+[mysql2]
+enabled => no
+dsn => MySQL-asterisk
+username => myuser
+password => mypass
+pre-connect => yes