summaryrefslogtreecommitdiff
path: root/configs/func_odbc.conf.sample
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-05-22 03:40:31 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-05-22 03:40:31 +0000
commit9e81cc3e0c65a18b6b8d9ffb3bf4e3096286c600 (patch)
tree0386b4d7b8eb2a495647a36d26265f2b60205395 /configs/func_odbc.conf.sample
parent76c47813fee7e06be456c27a08f140d507180ec3 (diff)
Escaping commas within fields isn't always desireable.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@29364 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configs/func_odbc.conf.sample')
-rw-r--r--configs/func_odbc.conf.sample3
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/func_odbc.conf.sample b/configs/func_odbc.conf.sample
index 3d02e0f92..c9f9d5d7f 100644
--- a/configs/func_odbc.conf.sample
+++ b/configs/func_odbc.conf.sample
@@ -35,4 +35,7 @@ dsn=mysql1
read=SELECT location FROM presence WHERE id='${SQL_ESC(${ARG1})}'
write=UPDATE presence SET location='${SQL_ESC(${VAL1})}' WHERE id='${SQL_ESC(${ARG1})}'
;prefix=OFFICE ; Changes this function from ODBC_PRESENCE to OFFICE_PRESENCE
+;escapecommas=no ; Normally, commas within a field are escaped such that each
+ ; field may be separated into individual variables with ARRAY.
+ ; This option turns that behavior off [default=yes].