Commit c661fcff by lixinming

no message

parent 476f9d1a
import { getPort } from "./serverConfig"; import { createOrcaleConnect } from "./db/orcale/orcale_connect";
import { getPort, orcaleConfig } from "./serverConfig";
async function lanuch() { async function lanuch() {
createOrcaleConnect(orcaleConfig.user, orcaleConfig.password, orcaleConfig.connectString);
} }
async function test(a) { async function test(a) {
......
...@@ -27,10 +27,11 @@ export const mySqlConfig = { ...@@ -27,10 +27,11 @@ export const mySqlConfig = {
}; };
//orcale数据库连接对象 //orcale数据库连接对象
//49152 55944 55407 1522
export const orcaleConfig = { export const orcaleConfig = {
user:'', user:'sys',
password:'', password:'123456',
connectString : "localhost/XEPDB1" connectString : "192.168.0.140:49152/orcl"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment