Sybase SQL Anywhere ODBC node for n8n
npm install n8n-nodes-sybase-odbcMinimal n8n custom node that executes SQL via ODBC using the odbc npm package.
item.json.query to contain the SQL string.1. Copy the package to your host and extract into your custom nodes folder:
``bash`
mkdir -p ~/.n8n/custom
tar -xzf n8n-nodes-sybase-odbc.tgz -C ~/.n8n/custom
2. Install dependencies and build inside the node folder:
`bash`
cd ~/.n8n/custom/n8n-nodes-sybase-odbc
npm install
npm run build
3. Restart n8n.
- Full connection string (Driver=...;Server=...;Database=...;UID=...;PWD=...)
- The node runs each item.json.query. For example, using a Function node:
`js
return [{ json: { query: "SELECT * FROM DBA.Cliente" } }];
``