...
Right-click on the installer and select Properties.
You need to verify the settings below.
Read-only should not be selected.
Hidden should not be selected.
Unblock should be selected.
Click Apply to apply the changes.
Click OK.
...
Info |
---|
If connectivity to the database cannot be made with default database configuration options, you may need to utilize the connection string to specify the correct parameters. For example, it is a common enterprise practice to change the default SQL Server port from 1433 to another port, requiring the use of a connection string. |
...
SQL Server Connection Strings
SQL Server | Integrated Authentication (Windows Authentication) |
---|
Server=SqlServerMachineName;Database=SkySyncV4;Integrated Security=true |
...
Azure SQL DB Standard Connection |
---|
Server=tcp:[ServerName].database.windows.net;Database=SkySyncV4;User ID=[LoginForDb]@[ServerName];Password=MyPassword;Trusted_Connection=False;Encrypt=True |
PostgreSQL Connection Strings
PostgreSQL Standard Connection |
---|
dbProvider=npgsql,dbConnectionString=User ID=PostgreSqlUserName;Password=MyPassword;Host=ServerName;Port=5432;Database=SkySyncV4 |
...