What is the recommended way to work with multiple tables in Sqflite. Should I use one Database helper to manage all tables in one .db file. Or should I create separate Database helper for each table.
I have 8 tables to store in database. All these 8 tables are created in the different area meaning that I don't want them to be created at one. The app is being created for a shop to manage all the accounting. So there is a Suppliers table, there is a village table and so on. Also, This app will not connect to the web. It's an offline only app. So, which approach would be the best in this scenario?