Hey,
I’m making a business app that uses a tableview. The data for each for is stored in a sqlite database.
The issue that I’m having is when I update the database (say, increase or decrease a certain field) the entire app freezes until the database is done updating.
I know LUA doesn’t have mutlithreading, so what’s the best way to manipulate a database without having the whole app freeze up? Would coroutines work?
Thanks!