蛋甲
安装
请参见。
$ npm i egg-oracle --save
用法
启用插件
// {app_root}/config/plugin.js
exports . oracle = {
enable : true ,
package : 'egg-oracle' ,
} ;
应用程序中的oracle连接池附加
// {app_root}/app/service/my_service.js
'use strict' ;
const Service = require ( 'egg' ) . Service ;
class MyService extends Service {
// example for getConnection
async foo ( ) {
const connection = await this . app . oracle .
1