
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Sets up a Oracle connection inside an SSH tunnel.
.connect(obj sshConfig, obj oracleConfig)
sshConfig
should be an object according to the ssh2
package.oracleConfig
should be an object according to the oracle
package.client
from the oracle
package and close
function.Don't forget to close()
the tunnel connection when you're done with oracle.
This is a working example put only your configuration and run example.js
const Oracle = require("oracle-ssh");
const oracledb = require("oracledb");
async function init() {
let connection;
try {
connection = await Oracle.connect(
{
host: '', // Your server host name
port: 22, // Your server ssh port as default in ssh is 22
user: '', // Your server username
password: '' // Your server password
},
{
host: "127.0.0.1", // Your database host in server as default is localhost
port: 1521, // Your database port in server as default is 1521
user: "", // Your database user
password: "", // Your database password
database: "" // Your database name
}
);
// Now the pool is running, it can be used
const sql = `SELECT sysdate FROM dual WHERE :b = 1`;
const binds = [1];
const options = {outFormat: oracledb.OUT_FORMAT_OBJECT};
const result = await connection.client.execute(sql, binds, options);
console.log(result);
} catch (err) {
console.error(err);
} finally {
if (connection) {
try {
await connection.close();
} catch (err) {
throw err;
}
}
}
}
// Call function
init();
FAQs
Connect to oracle database using ssh tunnel
We found that oracle-ssh demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.