I have two apps, both use integrated security. One works with the values set to true in the connection string and another with the value set to SSPI.
Why is the difference, as I knew about SSPI but not using True?
|
I have two apps, both use integrated security. One works with the values set to true in the connection string and another with the value set to SSPI. Why is the difference, as I knew about SSPI but not using True? |
||||
|
|
|
According to Microsoft they are the same thing.
There however is a difference between them according to the comment bellow:
|
|||||||||||||||||||||
|
|
Using Windows Authentication To connect to the database server is recommended to use Windows Authentication, commonly known as integrated security. To specify the Windows authentication, you can use any of the following two key-value pairs with the data provider. NET Framework for SQL Server:
However, only the second works with the data provider. NET Framework OleDb. If you set Integrated Security = true for ConnectionString an exception is thrown. To specify the Windows authentication in the data provider. NET Framework for ODBC, you should use the following key-value pair. Trusted_Connection = yes; |
|||
|
|
|
Integrated Security = False : User ID and Password are specified in the connection. Integrated Security = true : the current Windows account credentials are used for authentication. Integrated Security = SSPI : this is equalant to true. we can avid the username , password attributes from the connection string and use the Integrated Security |
|||
|
|
|
Let me start with
Recognized values are If |
||||
|
|