This is a standard .NET provider for use within .NET applications. The provider requires 2.0 or higher .NET framework version.
Connection String Syntax:
Connection string is case insensitive. Connection String := key=value; key=value; ...
key := Host | Data Source value := String. Host name or IP address of the machine where Scimore database server is running.
key := Port value := Integer. TCP port number. Default is 999.
optional key := Instance value := Integer. Instance of the server's node. -1 is the default.
key := Database | Initial Catalog value := String. Default database name which will be used for SQL statements.
Example:
The connection uses TCP protocol. This connection string defines connection to the server on localhost listening on port 999 and demodb will be used as default database:
Data Source=localhost; Port=999; Initial Catalog=demodb