SqlConnectionStringBuilder.DataSource Właściwość

Definicja

Pobiera lub ustawia nazwę lub adres sieciowy wystąpienia SQL Server do nawiązania połączenia.

public:
 property System::String ^ DataSource { System::String ^ get(); void set(System::String ^ value); };
public string DataSource { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.Data.SqlClient.SqlConnectionStringBuilder+SqlDataSourceConverter))]
public string DataSource { get; set; }
member this.DataSource : string with get, set
[<System.ComponentModel.TypeConverter(typeof(System.Data.SqlClient.SqlConnectionStringBuilder+SqlDataSourceConverter))>]
member this.DataSource : string with get, set
Public Property DataSource As String

Wartość właściwości

Wartość DataSource właściwości lub String.Empty jeśli żadna z nich nie została dostarczona.

Atrybuty

Wyjątki

Aby ustawić wartość null, użyj polecenia Value.

Przykłady

W poniższym przykładzie pokazano, że SqlConnectionStringBuilder klasa konwertuje synonimy dla klucza "Źródło danych" parametry połączenia na dobrze znany klucz:

using System.Data.SqlClient;

class Program
{
    static void Main()
    {
        SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder(
            "Network Address=(local);Integrated Security=SSPI;" +
            "Initial Catalog=AdventureWorks");

        // Display the connection string, which should now
        // contain the "Data Source" key, as opposed to the
        // supplied "Network Address".
        Console.WriteLine(builder.ConnectionString);

        // Retrieve the DataSource property.
        Console.WriteLine("DataSource = " + builder.DataSource);

        Console.WriteLine("Press any key to continue.");
        Console.ReadLine();
    }
}
Imports System.Data.SqlClient

Module Module1

    Sub Main()
        Dim builder As _
         New SqlConnectionStringBuilder( _
         "Network Address=(local);Integrated Security=SSPI;" & _
         "Initial Catalog=AdventureWorks")

        ' Display the connection string, which should now 
        ' contain the "Data Source" key, as opposed to the 
        ' supplied "Network Address".
        Console.WriteLine(builder.ConnectionString)

        ' Retrieve the DataSource property:
        Console.WriteLine("DataSource = " & builder.DataSource)

        Console.WriteLine("Press any key to continue.")
        Console.ReadLine()
    End Sub
End Module

Uwagi

Ta właściwość odpowiada kluczom "Źródło danych", "serwer", "address", "addr" i "adres sieciowy" w parametry połączenia. Niezależnie od tego, które z tych wartości zostały podane w podanym parametry połączenia, parametry połączenia utworzone przez SqlConnectionStringBuilder program użyje dobrze znanego klucza "Źródło danych".

Dotyczy

Zobacz też