Does SQLAlchemy support SQL Server query notifications? If not, what is the next available?
I can imagine that I could probably get SQLAlchemy to directly send Trasact SQL queries to set up query notifications, but is there a more general way?
In the end, I want to get information about any changes in the database that affect my query. This is for the FLASK web server, which then should at the same time push updates to clients, showing some calculated information.
Mahdi source
share