Gets or sets the connection string.
public string ConnectionString {get; set;}
Remarks
This property can be used to set or retrieve the full connection string. If the individual properties are set, then the full connection string can be retrieved with this property and assigned to an AdsConnection object.
Example
AdsConnectionStringBuilder builder =
new AdsConnectionStringBuilder();
builder.DataSource = @"c:\data";
builder.ServerType = "local";
AdsConnection conn = new AdsConnection();
conn.ConnectionString = builder.ConnectionString;
conn.Open();
See Also