I have a .NET 4 application (in mixed mode) with System.Data.Sqlite (1.0.82) to access a database on an encrypted database.
When I install the application in "c: \ program files \ myfolder", the connection to the sqlite database file is slow. The log files show that this is a sqlite join statement that lingers for a few seconds.
The problem does not occur if I do the following:
- Run the application with administrator rights
- Install any other place except c: \ program files \
- Install the application in c: \ program files \, but move the database to another folder.
I do not know what could be the reason for this ...
source share