Users in the DB

  • Thread starter Thread starter Alberto
  • Start date Start date
A

Alberto

The app I'm writting could have several users. Do you think that these
users should also be created in the sql server data base?

Thank you.
 
Alberto said:
The app I'm writting could have several users. Do you think that these
users should also be created in the sql server data base?

Thank you.

Maybe.

You haven't told use enough to give a more precise answer.
 
The app I'm writting could have several users. Do you think that these
users should also be created in the sql server data base?

It is very very common to have users in a database.

Arne
 
Hi,
No, You don't need to create sql server database users to use in
application, 'sa' user is sufficient until other db related requirements.
application users can be stored in a table (say users_mst with columns
([username], [password])), or a file, use sql SELECT statements to validate
or project users.
 
Back
Top