Modifying the additional settings of the SQL server connection string

You can change the additional settings of the SQL server connection string. When the application is installed, data in the SQL server connection string is saved in the following configuration file in XML format:

<application setup folder>\Configuration\BackendDatabaseConfiguration2.config

To change the additional settings of the SQL server connection string:

  1. Open the SQL server configuration file in a text editor.
  2. Find the tag named AdditionalConnectionParameters.

    When the application is installed, the value of this setting is automatically defined by the application based on the information provided by the administrator.

  3. Use the text editor to make the necessary changes to the SQL server connection settings.

    For a description of the SQL server connection string settings, you can refer to the Microsoft website via the following link: connection string settings.

    In the Additional connection parameters field, it is not recommended to define the SqlServerName and DatabaseName settings because they are already defined in the Name of SQL server and Database name fields.

  4. Save the file.

Changes made to the configuration file become effective within one minute.

Page top