summaryrefslogtreecommitdiff
path: root/test/engine/execute.py
Commit message (Collapse)AuthorAgeFilesLines
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-11/+6
| | | | maintenance branch in branches/rel_0_3.
* - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData insteadJason Kirtland2007-07-061-1/+1
| | | | | - Deprecated BoundMetaData- use MetaData instead - Removed DMD and BMD from documentation
* - Pulling pyformat test for MySQL-python, which fails on 3 driver versionsJason Kirtland2007-06-011-2/+4
| | | | (1.2.2b3, 1.2.2c1, 1.2.2)
* - some docstringsMike Bayer2007-04-201-1/+11
| | | | - some more test scenarios for raw bind params
* support positional parameters at the execute level even for DBs where we ↵Mike Bayer2007-04-191-1/+1
| | | | dont expect positional
* unit test with just one paramMike Bayer2007-04-191-1/+2
|
* - slight tweak to raw execute() change to also support tuples,Mike Bayer2007-04-031-4/+6
| | | | not just lists [ticket:523]
* - fixed argument passing to straight textual execute() on engine, connection.Mike Bayer2007-02-131-0/+56
can handle *args or a list instance for positional, **kwargs or a dict instance for named args, or a list of list or dicts to invoke executemany()