From 4b6d6d5f8024e2192c4383a0c4a3dd459900ff1a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 30 Jun 2014 11:08:05 -0400 Subject: - add new section Working with Raw DBAPI Connections, fixes #2218. --- lib/sqlalchemy/sql/functions.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/sqlalchemy/sql') diff --git a/lib/sqlalchemy/sql/functions.py b/lib/sqlalchemy/sql/functions.py index 1def809e0..4ed7d853d 100644 --- a/lib/sqlalchemy/sql/functions.py +++ b/lib/sqlalchemy/sql/functions.py @@ -267,6 +267,15 @@ func = _FunctionGenerator() calculate their return type automatically. For a listing of known generic functions, see :ref:`generic_functions`. + .. note:: + + The :data:`.func` construct has only limited support for calling + standalone "stored procedures", especially those with special parameterization + concerns. + + See the section :ref:`stored_procedures` for details on how to use + the DBAPI-level ``callproc()`` method for fully traditional stored procedures. + """ modifier = _FunctionGenerator(group=False) -- cgit v1.2.1