[sqlalchemy] SQL insert error

2013-04-17 Thread Philipp Kraus
Hello, I have try to insert some data from a dict into my table and I have used the description on http://docs.sqlalchemy.org/en/rel_0_8/core/tutorial.html#insert-expressions I run this command: connect.execute( sqlalchemy.Table( tablename, metadata ).insert().values( i.keys() ).compile(),

Re: [sqlalchemy] SQL insert error

2013-04-17 Thread Michael Bayer
On Apr 17, 2013, at 6:53 AM, Philipp Kraus philipp.kr...@flashpixx.de wrote: Hello, I have try to insert some data from a dict into my table and I have used the description on http://docs.sqlalchemy.org/en/rel_0_8/core/tutorial.html#insert-expressions I run this command: