What is the difference between Integrated Security = True and Integrated Security = SSPI?

JD. picture JD. · Aug 4, 2009 · Viewed 631.8k times · Source

I have two apps that use Integrated Security. One assigns Integrated Security = true in the connection string, and the other sets Integrated Security = SSPI.

What is the difference between SSPI and true in the context of Integrated Security?

Answer

cptScarlet picture cptScarlet · Aug 4, 2009

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.