Oracle Database Connections
TablePro supports Oracle Database 11.1 and later. It speaks the Oracle TNS wire protocol directly in Swift, so no Oracle Instant Client or other external library is required. This covers Oracle Database instances running on-premises, in Docker, or Oracle Cloud.Oracle 10g and earlier are not supported: they use the older O3LOGON handshake that the pure-Swift driver does not implement.
SQLNET.ENCRYPTION_SERVER or SQLNET.CRYPTO_CHECKSUM_SERVER set to REQUIRED) are also supported; TablePro negotiates AES encryption with a SHA crypto-checksum, the same as SQL Developer and DBeaver.
Install Plugin
The Oracle driver is available as a downloadable plugin. When you select Oracle in the connection form, TablePro will prompt you to install it automatically. You can also install it manually:- Open Settings > Plugins > Browse
- Find Oracle Driver and click Install
- The plugin downloads and loads immediately - no restart needed
Quick Setup
1
Install Oracle Instant Client
Download Basic package for macOS from Oracle
2
Create Connection
Click New Connection, select Oracle, enter host/port/username/password/service name, click Create
Connection Settings
Example Configurations
Local (Oracle XE): hostlocalhost:1521, user system, service XEPDB1
Docker: gvenzl/oracle-xe:21-slim image, same config as local
Remote: Standard host/port/credentials, service name from DBA
Oracle Cloud (ADB): Port 1522, service name format mydb_tp, requires TLS wallet download from Oracle Cloud Console
SSL/TLS: OracleNIO has no TLS fallback. Preferred connects in plain TCP (the SSL pane shows a warning). Use Required for TCPS to Oracle Autonomous Database, Verify CA with a CA certificate path for strict validation. See SSL/TLS for details.
Connection URL
Features
Schema Selection: Each user is a schema. Switch with ⌘K. Shows available schemas and objects. Table Info: Structure (columns, types, nullability, defaults), indexes (B-tree, bitmap), foreign keys, DDL via DBMS_METADATA. Query Editor: SQL/PL/SQL support. Pagination uses OFFSET/FETCH syntax:SELECT c.constraint_name FROM all_constraints c WHERE constraint_type = 'R' AND owner = 'HR'
Authentication: Username/password only (no OS auth or wallet). Create user: CREATE USER app_user IDENTIFIED BY "Password1!"; GRANT CREATE SESSION, SELECT ANY TABLE TO app_user;
Auth Compatibility
TablePro authenticates viaOracleNIO, a pure-Swift implementation of the Oracle TNS wire protocol (no Oracle Instant Client needed).
10G hash is supported for compatibility with legacy environments. It uses DES-based hashing without modern salting and is deprecated by Oracle. We recommend rotating affected accounts under modern auth so
password_versions contains only 11G or 12C:
password_versions first. “Server Version Not Supported” means the database is older than 11.1 (10g or earlier), which the driver cannot connect to.
Column Type Support
Columns with types not yet supported render as
<unsupported: type> rather than crashing or corrupting data. Report unsupported types via GitHub Issues.
Troubleshooting
Connection refused: Check listener running (lsnrctl status), verify port 1521 open, if Docker check docker start oracle-xe
Invalid service name: Verify service exists: SELECT value FROM v$parameter WHERE name = 'service_names'; List services: lsnrctl services
Instant Client not found: Download Basic package, extract to /usr/local/oracle/instantclient, set DYLD_LIBRARY_PATH
Limitations: Username/password only, BFILE shows locator metadata only (content fetch via DBMS_LOB not supported), PL/SQL limited to anonymous blocks.