GetDataSources method

Retrieves a DataTable containing information about all visible SQL Anywhere database servers.

Syntax
Visual Basic

Public Overrides Function GetDataSources() As DataTable
C#

public override DataTable GetDataSources();
Remarks

The returned table has four columns: ServerName, IPAddress, PortNumber, and DataBaseNames. There is a row in the table for each available database server.

Example

The following code fills a DataTable with information for each database server that is available.

DataTable servers = SADataSourceEnumerator.Instance.GetDataSources();
See also