ConnectionStringSecurity Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An enumeration which tells the user if the password for the ConnectionString has to be delivered.
public enum ConnectionStringSecurity
type ConnectionStringSecurity =
Public Enum ConnectionStringSecurity
- Inheritance
-
ConnectionStringSecurity
Fields
Name | Value | Description |
---|---|---|
Unchanged | 0 | Password is still part of ConnectionString and the user can connect to the Server without entering a password. |
PasswordRemoved | 1 | Password has been removed from ConnectionString and user will have to enter a password for the Server to connect to relational database. |
Remarks
When user reads the value of ConnectionString, the password is automatically removed from ConnectionString for security reasons.