ConnectionStrings.com
Quick one for .net/SQL -
Integrated Security=True - If you want to use windows authentication (takes windows credentials)
SqlConnection connection = new SqlConnection("Data Source=
Integrated Security=False - If you want to use SQL server authentication (provide user name and password and this loging shud be present in SQL 2005)
SqlConnection connection = new SqlConnection("Data Source=
Credits - Gaurav for healthy discussion. Cheers - Dipesh
No comments:
Post a Comment