I have tried to read SQLite DB file in unity project. When I run the application in mac, DB files read successfully but when running the application in windows I am getting shared violation exception. Please suggest any idea to read SQLite DB file in windows. Here is the code I am using for reading SQLite DB file.
Sample code :
string dbPath = "C:/Users/test12/AppData/LocalLow/test Solutions Ltd/testapp/testdb.db";
dbPath = Path.GetFullPath(dbPath);
var dbData = File.ReadAllBytes(dbPath);
In above code getting the exception in file.readallbytes()line.