SqlConnectionStringBuilder.DataSource Vlastnost

Definice

Získá nebo nastaví název nebo síťovou adresu instance SQL Server pro připojení.

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

Hodnota vlastnosti

Hodnota DataSource vlastnosti nebo String.Empty pokud nebyla zadána žádná.

Atributy

Výjimky

Pokud chcete nastavit hodnotu na null, použijte Value.

Příklady

Následující příklad ukazuje, že SqlConnectionStringBuilder třída převádí synonyma pro klíč "Zdroj dat" připojovací řetězec na dobře známý klíč:

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

Poznámky

Tato vlastnost odpovídá klíčům "Zdroj dat", "server", "adresa", "addr" a "síťová adresa" v rámci připojovací řetězec. Bez ohledu na to, která z těchto hodnot byla zadána v rámci zadaného připojovací řetězec, použije připojovací řetězec vytvořený objektem SqlConnectionStringBuilder dobře známý klíč "Zdroj dat".

Platí pro

Viz také