summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-09-07 17:15:37 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-09-07 17:15:37 +0000
commit75d8960740feb23d0752170e5bcd01d6786c2791 (patch)
treeb3771dba2758aefab24e6a44ac2e59ed82c88b93 /configs
parent42a4b058118deee19d452f80260bd8331346e306 (diff)
Allow multiple rows to be fetched within the normal mode of operation.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@216846 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configs')
-rw-r--r--configs/func_odbc.conf.sample12
1 files changed, 8 insertions, 4 deletions
diff --git a/configs/func_odbc.conf.sample b/configs/func_odbc.conf.sample
index 1bc11be2e..fd528d216 100644
--- a/configs/func_odbc.conf.sample
+++ b/configs/func_odbc.conf.sample
@@ -62,10 +62,14 @@
; 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.
+; rowlimit Rowlimit limits the total number of rows which can be stored for
+; that query. For mode=multirow, otherwise, func_odbc will
+; attempt to store all rows in the resultset, up to the maximum
+; amount of memory. In normal mode, rowlimit can be set to allow
+; additional rows to be fetched, rather than just the first one.
+; These additional rows can be returned by using the name of the
+; function which was called to retrieve the first row as an
+; argument to ODBC_FETCH().
; ODBC_SQL - Allow an SQL statement to be built entirely in the dialplan