connectionString
A SQL Anywhere connection string. A connection string is a semicolon-separated list of keyword=value pairs. For a
list of connection parameters, see Connection parameters.
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.
SAConnection conn = new SAConnection(
"UID=admin;PWD=money;SERVER=hr;DBN=policies" );
conn.Open();