This base class is responsible for strongly typed connection string builders.
Namespace: CNClrLib.ADONet.Client
Delphi
|
type
TDbConnectionStringBuilder = Class(TPersistent)
end;
|
|
Name
|
Description
|

|
AllowMARS
|
Is used to determine whether the connection provider allows MultipleActiveResultSets.
|

|
ConnectionString
|
Gets or sets the connection string associated with the DbConnectionStringBuilder.
|

|
ConnectionStringBuilderIntf
|
Provides direct access to the ADO.Net DbConnectionStringBuilder object.
|

|
Count
|
Gets the current number of keys that are contained within the ConnectionString property.
|

|
Item[String]
|
Gets or sets the value associated with the specified key.
|

|
Keys
|
Gets an ICollection that contains the keys in the DbConnectionStringBuilder.
|

|
Password
|
Gets or sets the password for the connection.
|

|
UserID
|
Gets or sets the user ID to be used when connecting to connection provider.
|

|
Values
|
Gets an ICollection that contains the values in the DbConnectionStringBuilder.
|
Top
|