Drift Server comes with the H2 database driver pre-installed. For other jdbc drivers you need to add the vendor specific jdbc driver to the lib directory
sample yaml snippet
PRODUCTSDB::LOCAL: !<JDBCConnectionDetails>
userName: user1
password: pwd
jdbcUrl: jdbc:h2:tcp://localhost/./test2
tableNames:
- CUSTOMER
- PRODUCT
- SUPPLIER{% hint style="info" %} Do not forget to add
!<JDBCConnectionDetails>This is used by the jackson yaml parser to resolve the polymorphic type of the connection details. {% endhint %}
You can verify the connection settings in the "System Connections" page by clicking "Test" button.

