aboutsummaryrefslogtreecommitdiffstats
path: root/1.4.23-rc4/configs/func_odbc.conf.sample
diff options
context:
space:
mode:
Diffstat (limited to '1.4.23-rc4/configs/func_odbc.conf.sample')
-rw-r--r--1.4.23-rc4/configs/func_odbc.conf.sample41
1 files changed, 0 insertions, 41 deletions
diff --git a/1.4.23-rc4/configs/func_odbc.conf.sample b/1.4.23-rc4/configs/func_odbc.conf.sample
deleted file mode 100644
index c9f9d5d7f..000000000
--- a/1.4.23-rc4/configs/func_odbc.conf.sample
+++ /dev/null
@@ -1,41 +0,0 @@
-;
-; func_odbc.conf
-;
-; Each context is a separately defined function. By convention, all
-; functions are entirely uppercase, so the defined contexts should also
-; be all-uppercase, but there is nothing that enforces this. All functions
-; are case-sensitive, however.
-;
-; For substitution, you have ${ARG1}, ${ARG2} ... ${ARGn}
-; for the arguments to each SQL statement.
-;
-; In addition, for write statements, you have ${VAL1}, ${VAL2} ... ${VALn}
-; parsed, just like arguments, for the values. In addition, if you want the
-; whole value, never mind the parsing, you can get that with ${VALUE}.
-;
-;
-; If you have data which may potentially contain single ticks, you may wish
-; to use the dialplan function SQL_ESC() to escape the data prior to its
-; inclusion in the SQL statement.
-
-
-; ODBC_SQL - Allow an SQL statement to be built entirely in the dialplan
-[SQL]
-dsn=mysql1
-read=${ARG1}
-
-; ODBC_ANTIGF - A blacklist.
-[ANTIGF]
-dsn=mysql1
-read=SELECT COUNT(*) FROM exgirlfriends WHERE callerid='${SQL_ESC(${ARG1})}'
-
-; ODBC_PRESENCE - Retrieve and update presence
-[PRESENCE]
-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].
-