Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

[HAL-1098] update url in template for MS SQLServer datasource. #209

Merged
merged 1 commit into from
May 20, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public DataSourceTemplates(BeanFactory beanFactory) {
dataSource.setPoolName("MSSQLDS_Pool");
dataSource.setJndiName("java:/MSSQLDS");
dataSource.setDriverName("sqlserver");
dataSource.setConnectionUrl("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=MyDatabase");
dataSource.setConnectionUrl("jdbc:sqlserver://localhost:1433;DatabaseName=MyDatabase");
dataSource.setUsername("admin");
dataSource.setPassword("admin");
dataSource.setBackgroundValidation(true);
Expand Down