You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to gain ability to support multiple database types, as well as improve security and reliability, convert all hardcoded SQL statements to SQLAlchemy ORM statements.
For example, instead of mysqlconn.execute("SELECT * FROM t_action") use conn.select(...).
The text was updated successfully, but these errors were encountered:
In order to gain ability to support multiple database types, as well as improve security and reliability, convert all hardcoded SQL statements to SQLAlchemy ORM statements.
For example, instead of
mysqlconn.execute("SELECT * FROM t_action")
useconn.select(...)
.The text was updated successfully, but these errors were encountered: