|
|
|
@ -8,6 +8,7 @@ import java.sql.Statement;
|
|
|
|
|
|
|
|
|
|
import com.base.Custom4exception;
|
|
|
|
|
import com.base.CustomException;
|
|
|
|
|
import com.platform.entities.OracleConnectorParams;
|
|
|
|
|
import com.platform.utils.Configs;
|
|
|
|
|
import com.platform.utils.FileOperateHelper;
|
|
|
|
|
|
|
|
|
@ -25,19 +26,23 @@ public class OracleConnector {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public synchronized static Connection ConnectionBuilder(String url, String user,
|
|
|
|
|
String password) {
|
|
|
|
|
String password, OracleConnectorParams oc) {
|
|
|
|
|
Connection conn=null;
|
|
|
|
|
try {
|
|
|
|
|
conn = DriverManager.getConnection(url, user, password);
|
|
|
|
|
} catch (SQLException e) {
|
|
|
|
|
new CustomException(Custom4exception.OracleSQL_Except, e);
|
|
|
|
|
Configs.CONSOLE_LOGGER.info("创建oracle连接失败: [" + e.getMessage() + "]");
|
|
|
|
|
if (null != oc) {
|
|
|
|
|
FileOperateHelper.fileWrite(Configs.EXTRACT_LOG_LOCALTION
|
|
|
|
|
+ oc.getName(), "创建oracle连接失败: [" + e.getMessage() + "]\r\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return conn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public synchronized static boolean canConnect(String url, String user, String password) {
|
|
|
|
|
return (null != ConnectionBuilder(url, user, password));
|
|
|
|
|
return (null != ConnectionBuilder(url, user, password, null));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public synchronized static ResultSet getSQLExecResultSet(Connection conn, String sql, String filePath) {
|
|
|
|
@ -60,7 +65,7 @@ public class OracleConnector {
|
|
|
|
|
|
|
|
|
|
public synchronized static ResultSet getSQLExecResultSet(String url, String user,
|
|
|
|
|
String password, String sql, String filePath) {
|
|
|
|
|
return getSQLExecResultSet(ConnectionBuilder(url, user, password), sql, filePath);
|
|
|
|
|
return getSQLExecResultSet(ConnectionBuilder(url, user, password, null), sql, filePath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|