views:

128

answers:

2

Hi I know about Integrated Security =True/SSPI is same, but do not know about Persist Security=True Could you please explain Thanks

+3  A: 

Persist Security = true means that the Password used for SQL authentication is not removed from the ConnectionString property of the connection.

When Integrated Security = true is used then the Persist Security is completely irelevant since it only applies to SQL authentication, not to windows/Integrated/SSPI.

Remus Rusanu