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();