I can find dozens of examples of a connectionString entry in Web.config, but there appears to be no comprehensive definition of the values in the string. What do the following mean:
- Data Source -- This appears to be the server identity, but that could be a misinterpretation
- Initial Catalog
- AttachDbFileName -- Seems to be the file name of the DB file, but how does this relate to Initial Catalog? And what does
|DataDirectory|mean when included in the name? - Integrated Security -- I assume that "True" means that "Windows Authentication" is used vs "SQL Server Authentication", but that's only a guess.
- UserID/Password -- Used only in a few odd examples. Not clear when these might/might not be needed.
- server -- I see this in some rare examples -- how different from Data Source?
- database -- Ditto.
- MultipleActiveResultSets -- ??