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

SQL Anywhere 11.0.1 (Français) » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SATcpOptionsBuilder class » SATcpOptionsBuilder constructors

 

SATcpOptionsBuilder(String) constructor

Initializes an SATcpOptionsBuilder object.

Syntax
Visual Basic

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

public  SATcpOptionsBuilder(
   string  options
);
Parameters
  • options   A SQL Anywhere TCP connection parameter options string.

    For a list of connection parameters, see Connection parameters.

Remarks

Restrictions: The SATcpOptionsBuilder class is not available in the .NET Compact Framework 2.0.

Example

The following statement initializes an SATcpOptionsBuilder object.

SATcpOptionsBuilder options = new SATcpOptionsBuilder( );
See also