Reputation: 49
I got a hr based windows application with sql server at bavk end where a user will login using his username/password . This username and password were stored in a table in sql and they are authenticated based on the login details provided.
I got a few question .
1) what type of authentication is using here, is there any generic term like , example :windows based or form based authentication ( not the case here)?
2) our Client application accessing server using odbc data source and a connection string Is stored in installation folder pointing to odbc. How do server authenticate client request in this case?
Regards
Upvotes: 0
Views: 71
Reputation: 341
1) Database authentication?
2) Depends on database/connectionstring: Integrated Windows authentication (domain) or SQL Server authentication
Upvotes: 1