Re: [sqlalchemy] a Python-side value or SQL expression is required

2017-06-02 Thread mike bayer
this takes strings: print sa.insert(SomeClass).values([ {"service_id": '12'}, {"service_id": '34'}, ]).compile(dialect=postgresql.dialect()) see the docs and examples at:

Re: [sqlalchemy] a Python-side value or SQL expression is required

2017-06-02 Thread alexei . bogdanov
Hi, sorry for interfering, but the question is still the same, but with a little bit tricky condition. Please, have a look stackoverflow . On Monday, January 18,

[sqlalchemy] SQLAlchemy and PyQT5

2017-06-02 Thread Wayne
Hi, Does anyone have any experience, links to open source code or anything else that shows the integration of PyQT5 with SQLAlchemy? Thanks Wayne -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: