Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

According to Microsoft they are the same thing.

When false, User ID and Password are specified in the connection. When true, the current Windows account credentials are used for authentication.
Recognized values are true, false, yes, no, and sspi (strongly recommended), which is equivalent to true.

There however is a difference between them according to the comment bellow:

True ignores User Id and Password if provided and uses those of the running process, SSPI it will use them if provided which is why MS prefers this.
They are equivalent in that they use the same security mechanism to authenticate but that is it.

share|improve this answer
8  
Originally, I think there was a difference in that "True" used NTLM and "SSPI" used Kerberos, but they're now interchangeable. – SqlRyan Aug 4 '09 at 20:26
42  
Actually they are not the same or interchangeable, Microsoft says they are equivalent but that doesn't mean interchangeable or that they are the same thing. TRUE ignores user Id and password if provided and uses those of the running process, SSPI it will use them if provided which is why MS prefers this. They are equivalent in that they use the same security mechanism to authenticate but that is it. – Rodney Foley Apr 15 '11 at 15:23
4  
Didn't check last comment, but if true, should be as answer, but not the comment – Johnny_D Mar 29 '12 at 12:12
1  
@RodneyFoley I use SSPI with wrong username and password, but it doesnt care and connected successfully in net4.0. Is this expected result ? – Ryu Kaplan Jun 6 '12 at 8:36
2  
@RodneyFoley sorry, my tests confirm that this answer is correct and your comment is not. Maybe it worked that way once, but it doesn't now, and you can't provide any reference to a Microsoft doc that supports your opinion. – Kirk Broadhurst Sep 17 '12 at 6:48
show 5 more comments

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:

  • Integrated Security = true;
  • Integrated Security = SSPI;

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;

Source: MSDN: Working with Connection Strings

share|improve this answer

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

share|improve this answer

Let me start with Integrated Security = false

false User ID and Password are specified in the connection string.
true Windows account credentials are used for authentication.

Recognized values are true, false, yes, no, and SSPI.

If User ID and Password are specified and Integrated Security is set to true, then User ID and Password will be ignored and Integrated Security will be used

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.