Edit

Share via


OracleConnectionStringBuilder.DataSource Property

Definition

Gets or sets the name of the Oracle data source to connect to.

public:
 property System::String ^ DataSource { System::String ^ get(); void set(System::String ^ value); };
public string DataSource { get; set; }
member this.DataSource : string with get, set
Public Property DataSource As String

Property Value

The value of the DataSource property, or Empty if none has been supplied.

Remarks

This property corresponds to the "Data Source" and "Server" keys within the connection string. Regardless of which of these values has been supplied within the supplied connection string, the connection string created by the OracleConnectionStringBuilder will use the well-known "Data Source" key. If the value passed in is null when you try to set the property, the DataSource property is reset. If the value has not been set and the developer tries to retrieve the property, the return value is Empty.

Applies to

See also