Oracle Database
About
Tabulify supports the sqlite relational database as a system
If you don't have any knowledge of Tabulify, you can start with the Learning Guide, otherwise you can also browser the relational database Howto's
Connection
To create a Oracle connection, you have the following possibilities
In a Connection Vault, to define a Oracle connection with the name myOracle, you would write:
[myOracle]
url = jdbc\:oracle\:thin\:@[host]\:[port]/[servicename]
driver = oracle.jdbc.OracleDriver
user = loginUser
password = loginPassword
With the tabli add command of the connection module, adding a Oracle connection with the name oracleConnectionName:
- With the Windows CMD console
tabli connection add "oracleConnectionName" "jdbc:oracle:thin:@[host]:[port]/[servicename]" ^
--user login ^
--password password
- With Linux Bash
tabli connection add "oracleConnectionName" "jdbc:oracle:thin:@[host]:[port]/[servicename]" \
--user login \
--password password
Version
The driver version used is the 19.8.3