aboutsummaryrefslogtreecommitdiffstats
path: root/configs/func_odbc.conf.sample
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-07 17:15:37 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-07 17:15:37 +0000
commit40563b4d1c2b4fe90a20fd3240a5b29f5411648e (patch)
treeb3771dba2758aefab24e6a44ac2e59ed82c88b93 /configs/func_odbc.conf.sample
parentccc05a3e9f7c5f344be7d311d2e637dfae4286f3 (diff)
Allow multiple rows to be fetched within the normal mode of operation.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@216846 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs/func_odbc.conf.sample')
-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