diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-06-30 11:08:05 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-06-30 11:08:05 -0400 |
commit | 4b6d6d5f8024e2192c4383a0c4a3dd459900ff1a (patch) | |
tree | f12b4722ac2de14c288edae329c3ba80e9ac3bf2 /lib/sqlalchemy/sql/functions.py | |
parent | 992e06412cf124d511d56d2741988f503f4c8085 (diff) | |
download | sqlalchemy-4b6d6d5f8024e2192c4383a0c4a3dd459900ff1a.tar.gz |
- add new section Working with Raw DBAPI Connections, fixes #2218.
Diffstat (limited to 'lib/sqlalchemy/sql/functions.py')
-rw-r--r-- | lib/sqlalchemy/sql/functions.py | 9 |
1 files changed, 9 insertions, 0 deletions
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) |