Hi,
I have a situation where I'm trying to us a composite primary key, where one of the columns can be null.
However, when I try to update an object I get the following error:
sqlalchemy.orm.exc.FlushError: Can't update table test using NULL for primary key value on column test.id2
Is this something SQLAlchemy can do? From some quick tests, it seems SQLite can do it, not sure about other databases.
Paul