Using tomcat datasource or hibernate managed connections? If the latter, then see the first link above.
If using tomcat datasource, some examples for other databases are at
Tomcat Documentation
The format for MSSql values using the MS JDBC driver is:
Code:
url=jdbc:microsoft:sqlserver://host:1433;DatabaseName=dbname;SelectMethod=cursor
driverclass=com.microsoft.jdbc.sqlserver.SQLServerDriver
If you're using other drivers, consult the driver documentation for these values.
(If this helped, please rate)