all the docs for sql alchemy give INSERT and UPDATE examples using the local table instance (i.e. tablename.update()... )
doing this seems difficult with the declarative syntax, I need to reference Base.metadata.tables["tablename"] for get the table reference.
Am I sposed to do this another way? Is there a different syntax for INSERT and UPDATE recommended when using the declarative syntax? should I just switch to the old way?
Thanks!