aboutsummaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-16 17:06:39 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-16 17:06:39 +0000
commit431aea47192bd32148e3a8b212fe0477a464d8b3 (patch)
tree56000a70fff978d199aa4237a5e5bdb1cf4696fc /configs
parentf4f1ec91f4728b9f272e7416c8cfd13751ef1778 (diff)
Eliminate mention of a variable which is only available in trunk.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@176098 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs')
-rw-r--r--configs/func_odbc.conf.sample10
1 files changed, 4 insertions, 6 deletions
diff --git a/configs/func_odbc.conf.sample b/configs/func_odbc.conf.sample
index 876416b07..de8bbf37c 100644
--- a/configs/func_odbc.conf.sample
+++ b/configs/func_odbc.conf.sample
@@ -49,12 +49,10 @@
; 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.
+; turn. The variable ODBCROWS is set initially, which may be used
+; in an iterative fashion to return each row in the result. You
+; should call ODBC_Finish on the ID to clean up any remaining
+; results when you are done with the query.
; 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