found in the HSE unit configuration directory in DB_CONNECTOR.ini
.
[global] filepath = "/path/to/database-file" dllpath = "/path/to/dll" timeout = 500
The SQL Toolkit needs to find some .dll files in the support directory. When running an executable, make sure to have a folder data configured under the application directory.
The DB_CONNECTOR was successfully tested with encryption provided by sqlcipher. As an example, the following steps were needed:
For more information about the SQLCypher API see https://www.zetetic.net/sqlcipher/sqlcipher-api/.
example of DB_CONNECTOR.ini
dllpath="C:\LabVIEW\sqlCipher\sqlcipher.dll"
Important: Every Config Section used with a DB_Connector initialized with DB-Engine DB-SQLite
have to define the same dllpath
The DB_CONNECTOR does NOT support the use of two dlls simultaneously. If you use the sqlcipher.dll for one clone, you have to use it for every clone. So either don't specify dllpath at all to use the standard-SQLite-dll, or specify the sqlcipher.dll in every config section which is used by a DB-SQLite
engine.