Cook-E-team / Cook-E

A mobile application that helps schedule cooking with multiple recipes
GNU General Public License v3.0
2 stars 1 forks source link

Database table and column names may not contain spaces #17

Closed samcrow closed 8 years ago

samcrow commented 8 years ago

Some of the current table and column names defined in SQLiteAccessor contain spaces. Depending on the database engine, names with spaces may be prohibited or may need to be quoted in queries.

To make the database access work, spaces should be replaced with underscores (_) in table and column names.

kylewoo235 commented 8 years ago

fixed