OdbcConnection.DataSource Property   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the server name or file name of the data source.
public:
 virtual property System::String ^ DataSource { System::String ^ get(); };public:
 property System::String ^ DataSource { System::String ^ get(); };[System.ComponentModel.Browsable(false)]
public override string DataSource { get; }public string DataSource { get; }[<System.ComponentModel.Browsable(false)>]
member this.DataSource : stringmember this.DataSource : stringPublic Overrides ReadOnly Property DataSource As StringPublic ReadOnly Property DataSource As StringProperty Value
The server name or file name of the data source. The default value is an empty string ("") until the connection is opened.
- Attributes
Examples
The following example creates an OdbcConnection and displays the backend data source name.
public void CreateOdbcConnection()
{
    string connectionString = "...";
    using (OdbcConnection connection = new(connectionString))
    {
        connection.Open();
        Console.WriteLine($"ServerVersion: {connection.ServerVersion}"
            + $"\nDatabase: {connection.Database}");
        // The connection is automatically closed at
        // the end of the Using block.
    }
}
Public Sub CreateOdbcConnection(connectionString As String)
       Using connection As New OdbcConnection(connectionString)
           With connection
               .Open()
               Console.WriteLine("ServerVersion: " & .ServerVersion _
                  & vbCrLf + "Database: " & .Database)
           End With
       End Using 
End Sub
Remarks
Retrieving the DataSource property is equivalent to calling the ODBC function SQLGetInfo with the InfoType parameter set to SQL_SERVER_NAME.