Closed
Description
Migrated issue, originally created by Anonymous
I patched in temporary tables support. It was discussed on the mailing list a while back, and you seem to have agreed to a "prefixes" addition to Table, so that's exactly what this patch does. It includes the appropriate unit test.
For a lot of databases, temporary tables are local to connections, so if you document its usage, it should go something like:
db = create_engine('postgres://vomjom:hojachi5@localhost/api')
meta = MetaData()
conn = db.connect()
meta.bind = conn
tbl = Table('foo', meta, Column('bar', Integer), prefixes='TEMPORARY')
meta.create_all()
Attachments: temporary_tables.patch
Metadata
Metadata
Assignees
Type
Projects
Relationships
Development
No branches or pull requests
Activity
sqlalchemy-bot commentedon Jun 13, 2008
Anonymous wrote:
prefixes patch for Table
sqlalchemy-bot commentedon Jun 13, 2008
Changes by Anonymous:
sqlalchemy-bot commentedon Jun 13, 2008
Anonymous wrote:
E-mail is vomjom at vomjom.net
Thanks.
sqlalchemy-bot commentedon Jun 13, 2008
Anonymous wrote:
Haha, looks like I'm going to have to change my database password since I included it in my example :)
sqlalchemy-bot commentedon Jul 4, 2008
Michael Trier (@empty) wrote:
Added in 9d7c690
sqlalchemy-bot commentedon Jul 4, 2008
Changes by Michael Trier (@empty):