Database configuration notes
- It's necessary to enable TCP access to your SQL Server database, as JDBC is a TCP-based protocol. You could do it by SQL Server Configuration Manager - item SQL Server Network Configuration.
- SQL Server Express - check your TCP port in SQL Server Network Configuration - dcm4chee connects by default to 1433.
- Your database user
pacs
should have it's Default language set to English. Otherwise you would get error messages like "java.sql.SQLException: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.
".
Download the JDBC driver and install it
...