have connection.execute() and others assume text()-like behavior by default ?

Issue #930 resolved
Mike Bayer repo owner created an issue

its very rare that people need access to the raw bind param format provided by a database....usually, people are happy using just the ":foo" format (and possibly the question mark format) and its likely that having execute() methods all assume this system would be preferable. if someone truly wanted the raw bind param format we could perhaps provide a raw() construct.

obviously we have to push this one til 0.5 since its a pretty backwards-breaking change.

Comments (2)

  1. Mike Bayer reporter

    session.execute() assumes this behavior, since the ORM implies a higher level of convenience vs. explicitness. Connection stays the same for now.

  2. Log in to comment