ADOMD.NET
Standard
Data Source=myServerAddress;Catalog=myDataBase;
Encrypted Connection
This one authenticates the user and encrypts the communication. This is the highest level of security.
Data Source=myServerAddress;Catalog=myDataBase;ProtectionLevel=PktPrivacy;
Signed Connection
This one authenticates the user and and prevents the content in the communication to be modified.
Data Source=myServerAddress;Catalog=myDataBase;ProtectionLevel=PktIntegrity;
Authenticated Connection
This one authenticates the user but does not secure the communication.
Data Source=myServerAddress;Catalog=myDataBase;ProtectionLevel=Connect;
Unauthenticated Connection
This one provides no form of authentication.
Data Source=myServerAddress;Catalog=myDataBase;ProtectionLevel=None;