I have created Winforms application which stores some sensitive data like username and password. The system used by many users. I am using SQL Server Express for storing data.
The application downloads data from a remote server by sync framework. I want to create only one user for that database so I can sync that database.
My problem is that I want to hide the database from all users which are using the application and also from the sa
& Windows authentication accounts. So no one can see the other usernames or passwords.
How can I do this?