OdbcConnection.DataSource Proprietà

Definizione

Ottiene il nome server o il nome file dell'origine dati.

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 : string
member this.DataSource : string
Public Overrides ReadOnly Property DataSource As String
Public ReadOnly Property DataSource As String

Valore della proprietà

Nome server o nome file dell'origine dati. Il valore predefinito è una stringa vuota ("") finché non si apre la connessione.

Attributi

Esempio

Nell'esempio seguente viene creato un oggetto OdbcConnection e viene visualizzato il nome dell'origine dati back-end.

public void CreateOdbcConnection()
{
    string connectionString = "Driver={SQL Native Client};Server=(local);Trusted_Connection=Yes;Database=AdventureWorks;";

    using (OdbcConnection connection = new OdbcConnection(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

Commenti

Il recupero della DataSource proprietà equivale a chiamare la funzione SQLGetInfo ODBC con il InfoType parametro impostato su SQL_SERVER_NAME.

Si applica a

Vedi anche