Udostępnij za pośrednictwem


OracleConnectionStringBuilder.DataSource Właściwość

Definicja

Pobiera lub ustawia nazwę źródła danych Oracle do nawiązania połączenia.

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

Wartość właściwości

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

Przykłady

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

// You may need to set a reference to the System.Data.OracleClient
// assembly before you can run this sample.
using System.Data.OracleClient;

class Program
{
    static void Main()
    {
        OracleConnectionStringBuilder builder =
            new OracleConnectionStringBuilder(
            "Server=OracleDemo;Integrated Security=True");

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

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

        Console.WriteLine("Press any key to continue.");
        Console.ReadLine();
    }
}
' You may need to set a reference to the System.Data.OracleClient
' assembly before running this example.
Imports System.Data.OracleClient

Module Module1

  Sub Main()
    Dim builder As _
     New OracleConnectionStringBuilder( _
     "Server=OracleDemo;Integrated Security=True")

    ' Display the connection string, which should now 
    ' contains the "Data Source" key, as opposed to the 
    ' supplied "Server".
    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" i "Serwer" 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 program OracleConnectionStringBuilder użyje dobrze znanego klucza "Źródło danych". Jeśli przekazana wartość ma wartość null podczas próby ustawienia właściwości , DataSource właściwość zostanie zresetowana. Jeśli wartość nie została ustawiona, a deweloper spróbuje pobrać właściwość , zwracana wartość to Empty.

Dotyczy

Zobacz też