IWS can interface with MySQL databases, but to do so, you must install an ADO.Net provider for MySQL.
The provider required by IWS is MySQL Connector/Net, and at the time of this writing, the necessary software can be downloaded from the official MySQL site. (Please note that the linked site is beyond our control and may change without notice.)
Provider=MYSQLCLIENT; Server=myServerAddress; Database=myDataBase; Uid=myUsername; Pwd=myPassword;
Parameter | Description |
---|---|
Port=number; |
Specifies what port to use for the connection. The default port is
3306, but any port can be specified as long as it matches the
server configuration.
If a port of -1 is specified, then the connection will use the named pipes network protocol (see Protocol below). |
Server=myServerAddress1 & myServerAddress2 & b |