aboutsummaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-29 16:49:27 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-29 16:49:27 +0000
commita4e6db001958726af031ab343bdc820081e93350 (patch)
tree73577f7e410713d575713510deeb50b684822234 /configs
parente4a5cb9ed8b1a9e1440f9464b0d3e42fa73038c2 (diff)
Merged revisions 172315 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r172315 | tilghman | 2009-01-29 10:48:25 -0600 (Thu, 29 Jan 2009) | 2 lines Better document mode=multirow, based upon a conversation with Jared. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@172316 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs')
-rw-r--r--configs/func_odbc.conf.sample35
1 files changed, 23 insertions, 12 deletions
diff --git a/configs/func_odbc.conf.sample b/configs/func_odbc.conf.sample
index ff9e1c17b..876416b07 100644
--- a/configs/func_odbc.conf.sample
+++ b/configs/func_odbc.conf.sample
@@ -19,7 +19,7 @@
; inclusion in the SQL statement.
;
;
-; The following variables are available in this configuration file:
+; The following options are available in this configuration file:
;
; readhandle A comma-separated list of DSNs (from res_odbc.conf) to use when
; executing the readsql statement. Each DSN is tried, in
@@ -42,6 +42,28 @@
; HASH(). If commas are not escaped, then values will be separated
; at the comma within fields. Please note that turning this option
; off is incompatible with the functionality of HASH().
+; synopsis Appears in the synopsis field for the command
+; 'core show function <function name>'
+; mode This option may be set to 'multirow' to allow the function
+; specified to return more than a single row. However, this
+; changes the way that func_odbc normally works. Instead of the
+; invocation of the function returning a row, it returns an opaque
+; ID, which may be passed to ODBC_FETCH() to return each row in
+; turn. ODBC_FETCH_STATUS returns SUCCESS or FAILURE, to indicate
+; whether any results were stored, and you should call ODBC_Finish
+; on the ID to clean up any remaining results when you are done
+; with the query. Also, the variable ODBCROWS is set initially,
+; which may be used in an iterative fashion to return each row in
+; the result.
+; Please note that multirow queries are isolated to the channel,
+; and rows may not be fetched outside of the channel where the
+; query was initially performed. Additionally, as the results are
+; associated with a channel, mode=multirow is incompatible with
+; the global space.
+; rowlimit An additional option for within mode=multirow, rowlimit limits
+; the total number of rows which can be stored for that query.
+; Otherwise, func_odbc will attempt to store all rows in the
+; resultset, up to the maximum amount of memory.
; ODBC_SQL - Allow an SQL statement to be built entirely in the dialplan
@@ -63,15 +85,4 @@ readsql=SELECT COUNT(*) FROM exgirlfriends WHERE callerid='${SQL_ESC(${ARG1})}'
dsn=mysql1
readsql=SELECT location FROM presence WHERE id='${SQL_ESC(${ARG1})}'
writesql=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].
-;mode=multirow ; Enable multirow fetching. Instead of returning results directly,
- ; mode=multirow queries will return a result-id, which can be passed
- ; multiple times to ODBC_FETCH, and that function will return each
- ; row, in order. You can add to this the following parameter:
-;rowlimit=5 ; rowlimit will limit the number of rows retrieved and stored from
- ; the database. If not specified, all rows, up to available memory,
- ; will be retrieved and stored.