Registry /
database / n8n-nodes-oracle-database-parameterization
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslnode 18–226 runs
build_error
glibcnode 18–226 runs
build_error
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
OracleDatabaseParameterization
✓ import { OracleDatabaseParameterization } from 'n8n-nodes-oracle-database-parameterization'
Default export is the main node class. Use named import for TypeScript.
OracleDatabaseParameterization (in n8n credentials)
✓ const { OracleDatabaseParameterization } = require('n8n-nodes-oracle-database-parameterization');
✗ import OracleDatabaseParameterization from 'n8n-nodes-oracle-database-parameterization';
n8n nodes are typically loaded via CommonJS require in n8n's custom node loader. ESM import may fail.
IOracleDatabaseParameterizationCredentials
✓ import type { IOracleDatabaseParameterizationCredentials } from 'n8n-nodes-oracle-database-parameterization'
TypeScript type for credentials object. Available if types are included in package.
Demonstrates importing the node and using parameterized queries to prevent SQL injection in Oracle DB workflows.
import { OracleDatabaseParameterization } from 'n8n-nodes-oracle-database-parameterization';
// Register node in n8n's node list (typical in n8n custom node setup)
const myNode = new OracleDatabaseParameterization();
// Example workflow: parameterized query execution
// In n8n editor, configure the node with:
// Query: "SELECT * FROM users WHERE id = :id AND status = :status"
// Parameters (JSON): {"id": 123, "status": "active"}
// Credentials: Oracle DB connection (host, port, service name, user, password)
Errors
Common errors & fixes
ERROR: Cannot find module 'n8n-nodes-oracle-database-parameterization'
Package not installed or n8n not configured to load community nodes.
fixInstall with: npm install n8n-nodes-oracle-database-parameterization in the n8n installation directory, then restart n8n.
Error: ORA-01017: invalid username/password; logon denied
Incorrect Oracle database credentials.
fixVerify username, password, host, port, and service name in the node's credential settings.
TypeError: Cannot read properties of undefined (reading 'execute')
Query parameter missing or incorrect node configuration.
fixEnsure the 'Query' field is not empty and contains a valid SQL statement. Also verify credentials are properly set.
Audit
Dependencies
n8n-workflowrequiredCore n8n dependency for node registration and execution
oracledbrequiredOracle database driver for Node.js