SQL Server
Using the built-in jTDS JDBC driver, you can enable SSL/TLS by using the "ssl" option:
jdbc:jtds:sqlserver://localhost:1433/mirthdb?ssl=authenticate |
The above option will require SSL/TLS traffic and require that the server certificate is trusted. If you want to accept self-signed certs, you can reduce the security level and use "ssl=require" instead.
Using the Microsoft JDBC driver, you can enable SSL/TLS by using the "encrypt" option:
jdbc:sqlserver://localhost:1433;databaseName=mirthdb;encrypt=true;trustServerCertificate=true |
Consult these online documentation pages for more information: