-
Type:
Regression Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: 7.0.0 CE GA1
-
Fix Version/s: 7.0.0 CE GA1
-
Component/s: Environments, Environments > Databases
-
Labels:None
-
Fix Priority:2
-
Git Pull Request:
JDBC default url for SQL Server should be updated as properties are separated by delimited semicolon not a forward slash:
https://msdn.microsoft.com/en-us/library/ms378428(v=sql.110).aspx
“property (Optional) is one or more option connection properties. For more information, see Setting the Connection Properties. Any property from the list can be specified. Properties can only be delimited by using the semicolon (';')
"
From
jdbc.default.url=jdbc:sqlserver://localhost/lportal
To
jdbc.default.url=jdbc:sqlserver://localhost;databaseName=lportal