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

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

 

SAConnectionStringBuilder(String) constructor

Initializes a new instance of the SAConnectionStringBuilder class.

Syntax
Visual Basic

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

public  SAConnectionStringBuilder(
   string  connectionString
);
Parameters
  • connectionString   The basis for the object's internal connection information. Parsed into keyword=value pairs.

    For a list of connection parameters, see Connection parameters.

Remarks

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

Example

The following statement initializes an SAConnection object for a connection to a database named policies running on a SQL Anywhere database server named hr. The connection uses the user ID admin and the password money.

SAConnectionStringBuilder conn = new SAConnectionStringBuilder("UID=admin;PWD=money;ENG=hr;DBN=policies" );
See also