aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-08 23:33:08 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-08 23:33:08 +0000
commit603200e1acd29560d468013e5b94b04c5802c3e1 (patch)
tree904629ad7195cf42d322e2158f9464e88a5030dd
parent8d77cb72e614a77b9bacd12ee72fe8682c184c7f (diff)
Document two keywords that were previously missing
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7405 f38db490-d61c-443f-a65b-d21fe96a405b
-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