Browse Source

Merge pull request #5216 in DEC/decision-webui-dcm from release/11.0 to final/11.0

* commit '5543010436b6eb9aa8d7c618c0b6e9baba986388':
  REPORT-72078 fix:修复Informix类型连接的URL转换问题
final/11.0
superman 3 years ago
parent
commit
0f02b1f434
  1. 8
      src/modules/app.service.ts

8
src/modules/app.service.ts

@ -67,6 +67,14 @@ export function splitUrl(host: string, port: string, database: string, baseUrl:
.replace('=database', `=${database}`);
}
// https://work.fineres.com/browse/REPORT-72078
if (baseUrl.startsWith('jdbc:informix-sqli')) {
return baseUrl.replace('hostname', host)
.replace(':port', port ? `:${port}` : '')
.replace('database', database)
.replace(':INFORMIXSERVER={server}','');
}
return baseUrl.replace('hostname', host).replace(':port', port ? `:${port}` : '')
.replace('database', database)
.replace('dbname', database);

Loading…
Cancel
Save