SqlDataSourceEnumerator.Instance Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene un'istanza della classe SqlDataSourceEnumerator, che è possibile utilizzare per recuperare informazioni sulle istanze di SQL Server disponibili.
public:
static property Microsoft::Data::Sql::SqlDataSourceEnumerator ^ Instance { Microsoft::Data::Sql::SqlDataSourceEnumerator ^ get(); };
public static Microsoft.Data.Sql.SqlDataSourceEnumerator Instance { get; }
static member Instance : Microsoft.Data.Sql.SqlDataSourceEnumerator
Public Shared ReadOnly Property Instance As SqlDataSourceEnumerator
Valore della proprietà
Istanza della classe SqlDataSourceEnumerator, utilizzata per recuperare informazioni sulle istanze di SQL Server disponibili.
Esempio
Nell'applicazione console seguente viene visualizzato un elenco di tutte le istanze disponibili SQL Server 2005 all'interno della rete locale. Questo codice usa il Select metodo per filtrare le righe nella tabella restituita dal GetDataSources metodo .
using Microsoft.Data.Sql;
class Program
{
static void Main()
{
// Retrieve the enumerator instance, and
// then retrieve the data sources.
SqlDataSourceEnumerator instance =
SqlDataSourceEnumerator.Instance;
System.Data.DataTable table = instance.GetDataSources();
// Filter the sources to just show SQL Server 2012 instances.
System.Data.DataRow[] rows = table.Select("Version LIKE '11%'");
foreach (System.Data.DataRow row in rows)
{
Console.WriteLine(row["ServerName"]);
}
Console.WriteLine("Press any key to continue.");
Console.ReadKey();
}
}
Commenti
La SqlDataSourceEnumerator classe non fornisce un costruttore. Utilizzare la Instance proprietà per recuperare invece un'istanza della classe .
using Microsoft.Data.Sql;
class Program
{
static void Main()
{
// Retrieve the enumerator instance and then the data.
SqlDataSourceEnumerator instance =
SqlDataSourceEnumerator.Instance;
System.Data.DataTable table = instance.GetDataSources();
// Display the contents of the table.
DisplayData(table);
Console.WriteLine("Press any key to continue.");
Console.ReadKey();
}
private static void DisplayData(System.Data.DataTable table)
{
foreach (System.Data.DataRow row in table.Rows)
{
foreach (System.Data.DataColumn col in table.Columns)
{
Console.WriteLine("{0} = {1}", col.ColumnName, row[col]);
}
Console.WriteLine("============================");
}
}
}