take SQL INSERT dependence on "post-fetching rows" out of SQL, make it ORM specific

Issue #61 resolved
Mike Bayer repo owner created an issue

right now the engine insists that it be able to get back a row that was inserted. since postgres/psycopg makes this so difficult, take this requirement out, make it so that only the ORM raises an error if it cant get a row back from the engine.

Comments (1)

  1. Mike Bayer reporter

    mostly a postgres issue, fixed in changeset:997. the "cant get the row/no OIDs" exception is raised when you call last_inserted_ids() and there are none. the post_exec just sets it to None if it cant post-load the row.

  2. Log in to comment