Authentication
- Last UpdatedNov 25, 2015
- 1 minute read
The following three database authentication methods are supported:
-
Windows Integrated Security
-
Windows Account
-
SQL Server Authentication
You must provide a standard connection string that is created from keyword = value pairs separated by semicolons.
Follow this link for a list of connection string keywords:
http://msdn2.microsoft.com/en-us/library/ms254499.aspx
For Windows Integrated Security specify the following parameter in the connection string:
Integrated Security=true;
For Windows Account authentication, specify a connection string that adheres to the following syntax:
User ID=<domain>\<username>;Password=<password>;
For SQL Server Authentication, specify a connection string that adheres to the following syntax:
User ID=<UserName>;Password=<password>;