From dd2cc400db8531881f07507c027f0b5074d65ba9 Mon Sep 17 00:00:00 2001
From: Anthony Tuininga
Date: Fri, 23 May 2008 14:12:28 +0000
Subject: [PATCH] Clarify that callfunc() is an extension to the DB API.
---
doc/cursor.rst | 4 ++++
html/cursor.html | 11 ++++++++---
html/genindex.html | 2 +-
html/index.html | 2 +-
html/modindex.html | 2 +-
html/search.html | 2 +-
html/searchindex.json | 2 +-
7 files changed, 17 insertions(+), 8 deletions(-)
diff --git a/doc/cursor.rst b/doc/cursor.rst
index 4cabf68..08afc39 100644
--- a/doc/cursor.rst
+++ b/doc/cursor.rst
@@ -60,6 +60,10 @@ Cursor Object
must contain one entry for each argument that the function expects. The
result of the call is the return value of the function.
+ .. note::
+
+ The DB API definition does not define this method.
+
.. method:: Cursor.callproc(name, [parameters=[]])
diff --git a/html/cursor.html b/html/cursor.html
index ac3bced..c68db53 100644
--- a/html/cursor.html
+++ b/html/cursor.html
@@ -94,10 +94,15 @@ statement must have been prepared first.
-
Cursor.callfunc(name, returnType[, parameters=[]])
-- Call a function with the given name. The return type is specified in the
+
Call a function with the given name. The return type is specified in the
same notation as is required by setinputsizes(). The sequence of parameters
must contain one entry for each argument that the function expects. The
-result of the call is the return value of the function.
+result of the call is the return value of the function.
+
+
Note
+
The DB API definition does not define this method.
+
+
-
@@ -396,7 +401,7 @@ automatically from the Python object passed in.