Camelot .NET Connector for Microsoft SharePoint connection strings

SharePoint

Standard

Server=myServerAddress;Database=mySite;Domain=myDomain;User=myUsername;Password=myPassword;

NTLM is default authentication method. Domain and Database are optional parameters.

Using SSL encryption

Server=myServerAddress;Database=mySite;Domain=myDomain;User=myUsername;Password=myPassword;SSL=True;

Always use SSL, deny connection if server does not support SSL or certificate is invalid.

Specifying Default authentication

Server=myServerAddress;Database=mySite;Authentication=Default;

Connect to server using default authentication, meaning the authenticated user under which the application is running or is impersonated.