I am new to ASP.NET-ville, be careful.
I was looking for an ASP.NET installation where server / database values ββare changing, so web.config needs to be updated.
There are several instances of <add name="NameXYZ" connectionString="blah" />
(several ASP.NET components), but some of them differ from each other in a different way.
I have the following:
<add name="CONNECTION-B" connectionString="metadata=res://*/ZZZZ.ssdl;provider=System.Data.SqlClient;provider connection string="Data Source=XXX;Initial Catalog=YYY;Persist Security Info=True;User ID=AAA;Password=BBBB;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" /> <add name="CONNECTION-A" connectionString="server=XXX;database=YYY;user id=XXX;password=BBB" />
I used the replaced values ββin the above example, making the assumption that for both types of formats:
- XXX is a server (MSSQL host)
- YYY is the name of the database
- AAA is a database user and
- BBB is the user password.
(ZZZZ is a list divided by pipeline)
The questions are as follows:
A) Is my assumption of string terms synonymous with joins accurate? (Data source <=> server, database <=> initial directory)
B) Are there any syntax errors in the markup? Some of the MSDN documents I've been looking at use interchangeably double, single, and "
tags.
glasnt
source share