OracleConnectionStringBuilder.DataSource Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает или задает имя источника данных Oracle, к которому необходимо подключиться.
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
Значение свойства
Значение свойства DataSource или значение Empty, если значение не указано.
Примеры
В следующем примере показано, что OracleConnectionStringBuilder класс преобразует синонимы для ключа "Источник данных" строка подключения в хорошо известный ключ.
// 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
Комментарии
Это свойство соответствует ключам "Источник данных" и "Сервер" в строка подключения. Независимо от того, какое из этих значений было предоставлено в предоставленном строка подключения, строка подключения, созданный OracleConnectionStringBuilder , будет использовать известный ключ "Источник данных". Если при попытке задания значения свойства передаваемое значение равно NULL, то свойство DataSource сбрасывается. Если значение не задано и разработчик пытается получить свойство, возвращается Emptyзначение .