Postgresql – sqlalchemy with postgres connection: .execute GRANT and DELETE not affecting database
Passing "SELECT"-based SQL queries works. But passing "DELETE"- or "GRANT"-based SQL executed in python without error but makes no change to my database (python 3.8, sqlalchemy 2.0.10). These "DELETE" and "GRANT" queries worked in Python 3.6, sqlalchemy 1.3.23. I could…