hi
is there any different in Connection string
between SQL server Authentication and Windows Authentication
if yes, can i get a sample connection string for this ?
thank's in advance
hi
is there any different in Connection string
between SQL server Authentication and Windows Authentication
if yes, can i get a sample connection string for this ?
thank's in advance
Windows authentication
connectionString="Server=MyServer;Database=MyDb;Trusted_Connection=Yes"
SQL server Authentication
ConnectionString="Server=MyServer; Database=pubs; User Id=MyUser; password= P@ssw0rd"