What specifies the following paramaeter in connection string.
Initial Catalog, Persist Security Info , Integrated Security
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaish MathewsPosted Jan 8, 2011, 12:23 PM
Persists Security Info -> Prevents sensitive information such as passwords, from being returned as a part of the connection, if made false. Not sure why it may need to set true. Probably a matter of performance as resetting the connection string will reset all details and these all need to be verified again.
Integrated Security->Determine which credentials need to be used. When false, User ID and Password are specified in the connection. When true, the current Windows account credentials are used for authentication.