SQL Server JDBC Connection Setup
One commonly asked question is what are the correct settings for the Configuration Tables tab when creating/setting up a Database Thing to connect to a SQL Server (2005 or later) database. There are a couple of ways to do this but the tried and true settings are listed below.
connectionValidationString - SELECT GetDate()
jDBCConnectionURL - jdbc:sqlserver://servername;databaseName=databasename
jDBCDriverClass - com.microsoft.sqlserver.jdbc.SQLServerDriver
Max number of connections in the pool - 5 (this can be modified based on number of concurrent connections required)
Database Password - databaseusername
Database User Name - databaseuserpassword
<br>
The jdbc driver file sqljdbc4.jar is by default installed with the ThingWorx server. It is located in TomcatDir\webapps\Thingworx\WEB-INF\lib\

