]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
added explicit bind parameters and column type maps to text type
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 20 Jan 2006 00:42:07 +0000 (00:42 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 20 Jan 2006 00:42:07 +0000 (00:42 +0000)
commit2808d04dd8faec0b7a8ac280ff23674cd0a36fc6
tree64b0869431e4bd7165c6442a3c8f0a99870c6a41
parentc9e7e698e60d9d15e113a0b936ea630bcda5443a
added explicit bind parameters and column type maps to text type
text type also parses :<string> into bind param objects
bind parameters convert their incoming type using engine.type_descriptor() methods
types.adapt_type() adjusted to not do extra work with incoming types, since the bind
param change will cause it to be called a lot more
added tests to new text type stuff, bind params, fixed some type tests
added basic docs for using text with binde params
doc/build/content/sqlconstruction.myt
lib/sqlalchemy/ansisql.py
lib/sqlalchemy/engine.py
lib/sqlalchemy/sql.py
lib/sqlalchemy/types.py
test/select.py
test/types.py