Reddit ALTcointip bot gives users ability to tip each other using various cryptocurrency coins, such as Bitcoins, Litecoins, Peercoins, Namecoins, and others.
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(...).
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(...)
.