I'm new to front-end/back-end communication and I was hoping for some guidance on the basic steps to retrieve data from a SQLite db file so that I can populate a page in my angular project. If you know of any resources I could read that would be of use, that would be great, but my knowledge on where/how to get started is zilch.
- If I have a SQLite db file, is it best to convert it to json first and then retrieve that file from Angular?
- Can I work directly with the SQLite db file in Angular and make use of the data that way?
TL;DR - Need to access data in a SQLite db file and display that in my Angular application, but I'm unsure of where to start/what the best practices would be to accomplish this task.