Cache Driver
The database driver to be used to cache data.
Data Type
string
Default Value
""
Remarks
The driver can cache data to a database when AutoCache is set. You can cache to any database that you have a JDBC driver for. The driver has been tested with SQL Server, Derby, MySQL, Oracle, and SQLite.
The cache database is determined based on CacheDriver and the CacheConnection properties.
The CacheDriver is the name of the JDBC driver class that you would like to use to cache data. The example below caches to SQL Server:
Cache Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver;Cache Connection='jdbc:sqlserver://localhost:7437;user=sa;password=123456;databaseName=Cache'