JoelMon / pyTalkManager

Software to aid public talk coordinators in the congregations of Jehovah's Witnesses.
http://theodevelopers.github.io/pyTalkManager
6 stars 1 forks source link

All VALUES in add_item() are changed to strings. #38

Closed JoelMon closed 9 years ago

JoelMon commented 10 years ago

Side effect of how I'm passing constructing the VALUES in line 109 of db.py causes all the VALUES to be strings, even ints. SQLite doesn't complain but it's not good practice.

JoelMon commented 9 years ago

Nothing that can be done about it at the moment. Just need to make sure to convert it to whatever datatype needed in Python. When the data is submitted to SQLite, it will convert it to the datatype the database schema has for the specific column.