From 325d3da80a19bcab00dad0198bdc4508bd97b62c Mon Sep 17 00:00:00 2001 From: chenlw <874313221@qq.com> Date: Sat, 8 Oct 2016 17:09:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E9=93=BE=E6=8E=A5=E6=B1=87?= =?UTF-8?q?=E6=80=BB=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/platform/service/IOracleExtractService.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/com/platform/service/IOracleExtractService.java b/src/com/platform/service/IOracleExtractService.java index 77cabccd..0bdcef29 100644 --- a/src/com/platform/service/IOracleExtractService.java +++ b/src/com/platform/service/IOracleExtractService.java @@ -9,6 +9,8 @@ import com.platform.entities.OracleConnectorParams; public interface IOracleExtractService { +// public boolean extractOracle(String name, List dataInfos, GatherOracleInfo oracleConnect) throws Exception; +// public boolean extractOracle(String name, List dataInfos, Map oracleConnect) throws Exception; /** 抽取数据库 * @param name * @param dataInfo //采集库连接参数 @@ -16,7 +18,13 @@ public interface IOracleExtractService { * @return * @throws Exception */ -// public boolean extractOracle(String name, List dataInfos, GatherOracleInfo oracleConnect) throws Exception; -// public boolean extractOracle(String name, List dataInfos, Map oracleConnect) throws Exception; public boolean extractOracle(String name, List dataInfo, GatherOracleInfo oracleConnect) throws Exception; + + /** 测试链接汇总数据库 + * @param oracleConnect + * @return true:能连接 + * @throws Exception + */ + public boolean isConnectTotalOracle(GatherOracleInfo oracleConnect) throws Exception; + }