summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-01-20 01:05:39 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-01-20 01:05:39 +0000
commit8adb3f1dc8cca2e5eec26e8e484f7098205130ce (patch)
treef90bd4bdaad8dea8f72bc45b7744a3689c66d2db /lib/sqlalchemy/sql.py
parentb44ece0789742f2552355497efacd895392d2145 (diff)
downloadsqlalchemy-8adb3f1dc8cca2e5eec26e8e484f7098205130ce.tar.gz
formatting?
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r--lib/sqlalchemy/sql.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py
index cf67abbe5..49040ec93 100644
--- a/lib/sqlalchemy/sql.py
+++ b/lib/sqlalchemy/sql.py
@@ -182,18 +182,18 @@ def text(text, engine=None, *args, **kwargs):
ClauseElement objects, or optionally wherever plain text is to be used.
Arguments include:
-
+
text - the text of the SQL statement to be created. use :<param> to specify
bind parameters; they will be compiled to their engine-specific format.
-
+
engine - the engine to be used for this text query. Alternatively, call the
text() method off the engine directly.
-
+
bindparams - a list of bindparam() instances which can be used to define the
types and/or initial values for the bind parameters within the textual statement;
the keynames of the bindparams must match those within the text of the statement.
The types will be used for pre-processing on bind values.
-
+
typemap - a dictionary mapping the names of columns represented in the SELECT
clause of the textual statement to type objects, which will be used to perform
post-processing on columns within the result set (for textual statements that