Retrieves a DataTable containing information about all visible SQL Anywhere database servers.
Visual Basic Public Overrides Function GetDataSources() As DataTable
C# public override DataTable GetDataSources();
The returned table has four columns: ServerName, IPAddress, PortNumber, and DataBaseNames. There is a row in the table for each available database server.
The following code fills a DataTable with information for each database server that is available.
DataTable servers = SADataSourceEnumerator.Instance.GetDataSources(); |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |