i wanted to use SQLite with .net application. It only works if the DLL and the Database file are in the BIn folder and the permissions of BIN are set to read / Write.
Is that a security risk ?
i wanted to use SQLite with .net application. It only works if the DLL
Share
Yes, it’s a security risk, and what’s more, every time a file in the Bin folder is updated, it will cause your application to restart. So you put the database file in the App_Data folder.