[sqlalchemy] Re: doing replaces

2008-01-04 Thread Michael Bayer
you should be able to use conn.execute(anystring, [list of dict]) just fine. the only thing that wont work at the moment is autocommit so youd have to run a begin()/commit() pair. to bring the string version of REPLACE into SQLAlchemy bind parameter processing etc. use text() - the

[sqlalchemy] Re: doing replaces

2008-01-04 Thread Mike Bernson
Thanks That is just the thing I needed. Can wait till the book comes out to learn even more. As normal sqlalchemy can handle the task. I just need to learn something new about it. Michael Bayer wrote: you should be able to use conn.execute(anystring, [list of dict]) just fine. the