I'm pretty new to swift coding, but I'm working on an app which really needs a database for a large amount of data. I've looked into coredata and it doesn't seem to be what I need. I full database that works with sql statements is really what I'm looking for.
There's plenty of information on the web about setting up an sqlite database within iOS but it looks like things might have changed since Swift 3 and xcode 8 have come out.
I'm not sure how to actually 'connect' to an sqlite database from within the project, all the code I've seen requires a 'path' to the database which is on the computer, but when the app is shipped, users obviously aren't going to be able to access that path. Do you need to create a .sqlite file within the project?
Thanks for your help!