JPGarCar / StormTheWallTimingApp

A race timing application specifically designed for UBC Recreation Storm The Wall.
GNU General Public License v2.0
1 stars 0 forks source link

Implement use of SQLite #5

Open JPGarCar opened 3 years ago

JPGarCar commented 3 years ago

So we are currently saving all the data on a JSON file that gets updated every time a change is made. At the beginning of the program, it loads it all into one Object that contains all other Objects.

We want to use SQLite with raw SQL using JDBC to save data to a local database.

JPGarCar commented 3 years ago

This should fix the problem that all the data is stored on lists and maps in objects. As well as not using JSON data any more!