Re: [sqlalchemy] SQLite temporary tables

2013-11-22 Thread Michael Bayer
y@googlegroups.com >> [mailto:sqlalchemy@googlegroups.com] On Behalf Of Michael Bayer >> Sent: 22 November 2013 16:17 >> To: sqlalchemy@googlegroups.com >> Subject: Re: [sqlalchemy] SQLite temporary tables >> >> >> On Nov 22, 2013, at 6:24 AM, Gombas, Gabor &

RE: [sqlalchemy] SQLite temporary tables

2013-11-22 Thread Gombas, Gabor
-implement table creation, even if it does not look that nice. > -Original Message- > From: sqlalchemy@googlegroups.com > [mailto:sqlalchemy@googlegroups.com] On Behalf Of Michael Bayer > Sent: 22 November 2013 16:17 > To: sqlalchemy@googlegroups.com > Subject: Re: [sqlalch

Re: [sqlalchemy] SQLite temporary tables

2013-11-22 Thread Michael Bayer
On Nov 22, 2013, at 6:24 AM, Gombas, Gabor wrote: > Hi, > > How should one create SQLite temporary tables using SQLAlchemy? The following > does not work: > > from sqlalchemy import create_engine, Column, String > from sqlalchemy.ext.declarative import declarative_base > fr

[sqlalchemy] SQLite temporary tables

2013-11-22 Thread Gombas, Gabor
Hi, How should one create SQLite temporary tables using SQLAlchemy? The following does not work: from sqlalchemy import create_engine, Column, String from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import sessionmaker from sqlalchemy.sc