Windows Multiple User Application Best Practices
Posted
by Burt
on Stack Overflow
See other posts from Stack Overflow
or by Burt
Published on 2010-06-05T23:06:12Z
Indexed on
2010/06/05
23:12 UTC
Read the original article
Hit count: 169
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
© Stack Overflow or respective owner