vindimy / altcointip

Reddit ALTcointip bot gives users ability to tip each other using various cryptocurrency coins, such as Bitcoins, Litecoins, Peercoins, Namecoins, and others.
http://www.reddit.com/r/ALTcointip/wiki/index
GNU General Public License v2.0
106 stars 143 forks source link

Convert all SQL statements to SQLAlchemy ORM #8

Open vindimy opened 11 years ago

vindimy commented 11 years ago

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(...).