Stephen wrote:
> I didn't see anything in the docs or in this group so please forgive
> me if this has been asked already.
>
> If I'm using sqlalchemy with an underlying mysql db, how can I achieve
> INSERT DELAYED?
>
> I saw this changeset on the wiki:
> http://www.sqlalchemy.org/trac/changeset/4236
>
> But I don't understand how to take advantage of this through the
> sqlalchemy api. Is the only way to get this through:
> scoped_session(..).connection(...).execute("sql command")
myinsert = table.insert().prefix_with("DELAYED")
session.execute(myinsert)
--
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en.