summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2005-12-08 23:33:08 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2005-12-08 23:33:08 +0000
commitc7cda51ffc3062cbcdf8c5cc13aeaa79122fb831 (patch)
tree904629ad7195cf42d322e2158f9464e88a5030dd /configs
parent97c8d0dbfc064049dd9a1d30685b7273fa62e730 (diff)
Document two keywords that were previously missing
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7405 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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