How to connect to a sqlite database in runtime execution?
So i have a .sqlite3 file that i get from an API and i store this file in public/cache/, i would like to know how to i connect to this database to perform query search and etc...
I already managed to run the database with SQlite DB Browser, but my question is how to load the database in my laravel application and get the data from this database, it is a file .sqlite3 stored in my public/cache/ directory.
Because the user will choose what database file he want, because there is different language translations to different database files, so, i have to change the database file according to the user choises, this is the way the API i'm working with works.