<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.io.*,java.util.*" %>
<%@ page import="org.apache.poi.hssf.usermodel.*" %>
<%@ page import="org.apache.poi.poifs.filesystem.*" %>
<%@ page import="org.apache.poi.ss.usermodel.CellType" %> <%@ page import="java.sql.*" %> <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Generate SQL </title>
</head>
<body>
<h1>TemplateName <%= request.getParameter("TemplateName")%> </h1>
<p> <%
String templateName = request.getParameter("TemplateName");
String srcTemplateName=templateName+"_src";
String trgTemplateName=templateName+"_trg";
String primaryKeyDefine="PK nvarchar(150)";
String PrimaryKey ="PK";
String FilterCondition="a.PK=b.PK";
String SystemIdentity="WFS";
String srcQuery="";
String trgQuery="";
String SQL ="INSERT INTO [dbo].[BusinessLogicCmpDefine] ([TemplateName],[SrcTemplateName],[TrgTemplateName],[PrimaryKeyDefine],[PrimaryKey] ,[FilterCondition] ,[SystemIdentity])"; SQL=SQL+" <br> VALUES ('" +templateName+ "','"+srcTemplateName+"','"+trgTemplateName+"','"+primaryKeyDefine+"','"+PrimaryKey+"','"+FilterCondition+"','"+SystemIdentity+"')"; out.println(SQL); %> </p>
<h2>View <%=srcTemplateName%> </h2>
<p>
Create view [dbo].[<%=srcTemplateName%>]
<br>
as
<br>
<% try (FileInputStream fileIn = new FileInputStream("c:\\demo.xls")) {
POIFSFileSystem fs = new POIFSFileSystem(fileIn);
HSSFWorkbook wb = new HSSFWorkbook(fs);
HSSFSheet sheet = wb.getSheetAt(0); for (int k = 1; k <= sheet.getLastRowNum(); k++) {
HSSFRow row = sheet.getRow(k);
if(row !=null){
HSSFCell cell = row.getCell(1);
if(cell==null){
out.println("no data<br>");
}else{
String value =cell.getStringCellValue(); if(value.equals(templateName)){ HSSFCell srcQueryCell = row.getCell(5);
srcQuery=srcQueryCell.getStringCellValue().replaceAll("\r|\n","<br>");; HSSFCell trgQueryCell = row.getCell(6);
trgQuery=trgQueryCell.getStringCellValue().replaceAll("\r|\n","<br>");
out.println(srcQuery+"<br> "); } }
}
}
}
%> </p>
<h2>View <%=trgTemplateName%></h2>
<p>
Create view [dbo].[<%=trgTemplateName%>]
<br>
as
<br>
<%out.println(trgQuery+"<br> ");%>
</p> <h2>Excute SQL</h2>
<p>
exec USP_CompareR1AndR3Data '<%=templateName%>' ,'WFS'
</p>
<p>
今天的日期是: <%= (new java.util.Date()).toLocaleString()%> </p>
<%
String connectionUrl = "jdbc:sqlserver://mysql:1443;" +
"databaseName=NewDWH_DM_TOOL;integratedSecurity=true;"; // Declare the JDBC objects.
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
out.println("test sql connection <br>");
try {
// Establish the connection.
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
con = DriverManager.getConnection(connectionUrl); // Create and execute an SQL statement that returns some data.
String querySql = "select * from BusinessLogicCmpDefine where TemplateName='"+templateName+"'";
stmt = con.createStatement();
rs = stmt.executeQuery(querySql); // Iterate through the data in the result set and display it.
int isExists=0;
while (rs.next()) {
isExists=1;
System.out.println(rs.getString(1) + " " + rs.getString(2)); }
out.println("test sql connection success <br>");
if(isExists==1)
{
out.println("已经存在不用再创建! <br>");
}else
{ out.println("不存在 <br>");
} } // Handle any errors that may have occurred.
catch (Exception e) {
e.printStackTrace();
out.println("test sql connection fault <br>");
} finally {
if (rs != null) try { rs.close(); } catch(Exception e) {}
if (stmt != null) try { stmt.close(); } catch(Exception e) {}
if (con != null) try { con.close(); } catch(Exception e) {}
}
%>
</body>
</html>

最新文章

  1. AngularJS提供的内置过滤器
  2. poj 3264 【线段树】
  3. div+css定位position详解
  4. 【HDOJ】4122 Alice&#39;s mooncake shop
  5. 多线程编程(一) - 关于C#中Thread.Join()
  6. 移动端Reactive Native轮播组件
  7. 用javascript实现完全的类(private、pubulic等)
  8. 关于xmlHttp.status最新统计
  9. springboot整合mybaits注解开发
  10. chrome不支持embed标签解决方案
  11. 基于Jmeter的thrift-RPC接口测试
  12. springAop整合自定义注解做方法日志配置(源码在附件)
  13. oracle存储过程 out cursor
  14. ceil以及double的精度问题
  15. java网络编程-单线程服务端与客户端通信
  16. Codeforces 734E Anton and Tree(缩点+树的直径)
  17. ios中修改数字键盘
  18. HDU 2485 Destroying the bus stations(费用流)
  19. MIT App Inventor使用与入门教程
  20. HAOI2014 遥感监测

热门文章

  1. [洛谷P2580]于是他错误的点名开始了(Trie树)
  2. static面试总结
  3. bzoj 4401 块的计数 思想+模拟+贪心
  4. wamp Apache和mysql服务无法启动的终极解决方法!!!!!!
  5. indexedDB 增删改查
  6. tensorflow加载embedding模型进行可视化
  7. CatchTheCaw ----广搜入门
  8. 安装破解版的webstorne
  9. P1551 亲戚 洛谷
  10. [Bzoj3172][Tjoi2013]单词(fail树)