Я успешно соединяюсь с DBeaver для Oracle Database Express Edition 11g
но когда я хочу соединиться с nodeJS
мой код
const oracleApp = express();
const oracledb = require('oracledb');
const config = {
user: 'TEST',
password: 'TEST',
connectString: 'localhost:1521/XE'
};
async function getStudents() {
let conn;
try {
conn = await oracledb.getConnection(config);
const result = await conn.execute(
'select * from students'
);
console.log(result.rows[0]);
} catch (err) {
console.log('Ouch!', err);
} finally {
if (conn) { // conn assignment worked, need to close
await conn.close();
}
}
}
getStudents();```