I am wondering how I could protect an Access database in a C# project which will run on computers without internet connection, so a 3-tier-architecture is not applicable.
It should not be possible to copy the database or ask for values without using the C# application.
I am wondering how I could protect an Access database in a C# project
Share
You can password protect an Access database and store the password as a resource, encrypting the value if you like. In your code, you would read the resource (decrypting if necessary) to pass it on the connection string.