Windows Multiple User Application Best Practices
- by Burt
I am developing a WPF application that will hook into a SQLLite database and I have a number of reservations around multiple users:
When I install my application should I assume that each windows user account will mean only one user of my application or should I include a login for my app (drawback is that the user will have to log in all the time)
If I am supporting multiple users how do I handle a new user account i.e. on application start of the new account should I set up a new user in the DB
Are there any other gotchas around this area, it isn't something I have really had to worry about before.
Thanks in advance,
B