Manie Verster
Member
- Joined
- Nov 22, 2023
- Messages
- 22
- Programming Experience
- 10+
Good day,
I created a project in MAUI connecting to a SQLite database. Currently, it is stored in the AppDataDirectory but I do not know how to access it.
While I am in the developing stage I need to from time to time access the database. Can anyone tell me how to do this or tell me an alternate way?
I created a project in MAUI connecting to a SQLite database. Currently, it is stored in the AppDataDirectory but I do not know how to access it.
SQLite database:
private const string db_name = "VehicleLogBook.db3";
_connection = new SQLiteAsyncConnection(Path.Combine(FileSystem.AppDataDirectory, db_name));