我想为我的项目连接oracle数据库,尝试使用下面的代码,得到错误“ TypeError:无法读取未定义的属性'Promise'”
使用oracledb软件包并共享打字稿代码,可能是什么问题?
import * as oracledb from 'oracledb'
export class Connectdb {
connection: any
result:any
constructor() {
this.connection = oracledb.getConnection({
user: "user",
password: "pass",
connectString: "138.21.146.216:12345/bomdevo01"
});
}
}
new Connectdb()