Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API Reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SACommLinksOptionsBuilder class » SACommLinksOptionsBuilder constructors

 

SACommLinksOptionsBuilder(String) constructor

Initializes an SACommLinksOptionsBuilder object.

Syntax
Visual Basic

Public Sub New( _
   ByVal options As String _
)
C#

public  SACommLinksOptionsBuilder(
   string  options
);
Parameters
  • options   A SQL Anywhere CommLinks connection parameter string.

    For a list of connection parameters, see Connection parameters.

Remarks

The SACommLinksOptionsBuilder class is not available in the .NET Compact Framework 2.0.

Example

The following statement initializes an SACommLinksOptionsBuilder object.

SACommLinksOptionsBuilder commLinks =
 new SACommLinksOptionsBuilder("TCPIP(DoBroadcast=ALL;Timeout=20)" );
See also