我尝试将 oracle DB 与 nodejs 连接,并收到如下消息:
ORA-12560: TNS: 协议适配器错误
这是我的代码:
oracledb.getConnection(
{
user:"user",
password:"password",
ConnectString:"IP:PORT/instance_name"
},
function(err, connection) {
if (err) {
console.error(err.message);
return;
}
console.log('Connection was successful!');
connection.close(
function(err) {
if (err) {
console.error(err.message);
return;
}
});
});