Commit 68b30d87 authored by prumde's avatar prumde

Added UpdateClobColumn jsp and executeSalesTrends jsp

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@210613 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 950e2dc3
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@page import="ibase.ejb.CommonDBAccessEJB"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<center>
<form>
<tr>
<td>Table Name :</td>
<td><input type="text" name="tableName" id="tableName"></td>
</tr>
<br><br>
<tr>
<td>Column Name :</td>
<td><input type="text" name="columnName" id="columnName"></td>
</tr>
<br><br>
<tr>
<td>Column Value:</td>
<td><input type="text" name="columnValue" id="columnValue"></td>
</tr>
<br><br>
<tr>
<td>Condition :</td>
<td><input type="text" name="condition" id="condition"></td>
</tr>
<br><br>
<tr>
<td>TranDB :</td>
<td><input type="text" name="transDB" id="transDB"></td>
</tr>
<br><br>
<input type="submit" id="bb" value="Update" />
</form>
</center>
<%
String tableName = request.getParameter("tableName");
System.out.println("tableName" + tableName);
if (tableName != null) {
String columnName = request.getParameter("columnName");
String columnValue = request.getParameter("columnValue");
String condition = request.getParameter("condition");
String transDB = request.getParameter("transDB");
System.out.println("submitData " + tableName + " columnName " + columnName + " columnValue "
+ columnValue + " condition " + condition + " transDB " + transDB);
CommonDBAccessEJB commonDBAccess = new CommonDBAccessEJB();
commonDBAccess.updateClobColumn(tableName, columnName, columnValue, condition, transDB);
}
%>
</body>
</html>
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