943,971 Members | Top Members by Rank

Ad:
  • Java Discussion Thread
  • Unsolved
  • Views: 1387
  • Java RSS
Oct 16th, 2007
0

code is nopt updating the database as given below

Expand Post »
jsp code


<%@ page import="temperory.Mrityunjay.*"%>
<%@ page import="com.MindShaper.ClassTeacher.Utility.BaseServlet.VSHttpServlet" %>
<%@ page import="java.util.*"%>
<%@ page import="com.MindShaper.ClassTeacher.Utility.Helper.*" %>
<%@ page import="ClassTeacher.SessionObject"%>
<%@ page import="ClassTeacher1.MemoryTables"%>

<HTML>
<HEAD>
<TITLE>Student Information</TITLE>
<!-- for confirm () -->
<script language="JavaScript1.2" src="functions.js" type="text/javascript"> </script>
<link rel="stylesheet" href="lib.css" type="text/css">

<style type="text/css">
<!--
td {
padding-left: 15px;
}
-->
</style>

</HEAD>

<BODY>
<link rel="stylesheet" href="/utils/infrastructure/common.css" type="text/css">
<form name="input" method='get' action="/servlets/temperory.Mrityunjay.Update" >
<%

SessionObject sessObj= (SessionObject)request.getSession(false).getValue("com.MindShaper.ClassTeacher.VS.SessionObject");
if(sessObj == null) {
String errMsg = "Your Session Has Been Deactivated";
errMsg = MemoryTables.removeSpaces(errMsg);
response.sendRedirect("/servlets/ClassTeacher.GetLoginData?errMsg=" + errMsg);
return;
}
Displayname a= new Displayname();
int Id=RequestHelper.getInt(request,"Id",0);
String act = RequestHelper.getString(request,"act","");
String fname = "";
String lname ="";
String class1="";

if(act.equalsIgnoreCase("edit"))
{
a = Displayname.getbyId(Id);
fname=a.getFirstname();
lname = a.getLastname();
class1=a.getClass1();

}



%>

<table border="0" align='center' width="70%" height="20%">
<tr>
<th align=Center colspan=0></th>
</tr>
Type your first name:
<input type="text" name="FirstName" value ="<%=fname%>">
<br>
<br>Type your last name:
<input type="text" name="LastName"value= "<%=lname%>">
<br>
<br>Type your Class:
<input type="text" name="Class" value= "<%=class1%>" >
<br>
<input type="submit" value="UPDATE">
<input type="hidden" name="act" value="<%=act%>">
</form>
</BODY>
</HTML>











servlet code


// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3)
// Source File Name: AddEditArea.java

package temperory.Mrityunjay;

import ClassTeacher.SessionObject;
import ClassTeacher1.MemoryTables;
import com.MindShaper.ClassTeacher.Utility.BaseServlet.VSHttpServlet;
import com.MindShaper.ClassTeacher.Utility.Helper.*;
import java.io.IOException;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.http.*;

// Referenced classes of package com.MindShaper.ClassTeacher.Utility.Administration.NTransport:
// NTransportDBHelper

public class Update extends VSHttpServlet
{

public Update()
{
}

public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException
{
doPost(req, res);
}

public void doPost(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException
{
SessionObject sessObj1 = (SessionObject)req.getSession(false).getValue("com.MindShaper.ClassTeacher.VS.SessionObject");
if(sessObj1 == null)
{
String errMsg = "Your Session Has Been Deactivated";
errMsg = MemoryTables.removeSpaces(errMsg);
res.sendRedirect("/servlets/ClassTeacher.GetLoginData?errMsg=" + errMsg);
return;
}
Log.log("1");
String act;
act= RequestHelper.getString(req,"act","");
Log.log("2");

int Id= RequestHelper.getInt(req, "Id",0);
String fname = RequestHelper.getString(req, "FirstName", "");
String lname = RequestHelper.getString(req, "LastName", "");
String class1 = RequestHelper.getString(req, "Class", "");


String query1= "UPDATE MRITYUNJAY set Firstname = '"+StringHelper.makeDbSafe(fname)+"',Lastname = '"+StringHelper.makeDbSafe(lname)+"',Class='"+StringHelper.makeDbSafe(class1)+"' where Id= "+Id;
Log.log("3");
try
{
DBHelper.executeIt(query1);
}

catch(Exception e)
{
}


res.sendRedirect("/temp/mrityunjay/displayname.jsp");

}
}




plz help as urgent as possible
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
mrityunjay22 is offline Offline
19 posts
since Oct 2007
Oct 16th, 2007
0

Re: code is nopt updating the database as given below

Error messages and stack traces would help.
Moderator
Reputation Points: 1471
Solved Threads: 490
Industrious Poster
masijade is offline Offline
4,043 posts
since Feb 2006
Oct 16th, 2007
0

Re: code is nopt updating the database as given below

there is no error messages and i dont know how to code trace plz help me i need it urgently
Reputation Points: 10
Solved Threads: 0
Newbie Poster
mrityunjay22 is offline Offline
19 posts
since Oct 2007
Oct 16th, 2007
0

Re: code is nopt updating the database as given below

I'm sorry, but that says it all.

The application server you are using to server these pages has a log. The errors should be found there. And I said nothing about a "code trace". I said a "stack trace", these should also be in the log file, probably directly after the error message, as long as the application server is not configure to prevent them.
Moderator
Reputation Points: 1471
Solved Threads: 490
Industrious Poster
masijade is offline Offline
4,043 posts
since Feb 2006
Oct 16th, 2007
0

Re: code is nopt updating the database as given below

thank u problem solved
Reputation Points: 10
Solved Threads: 0
Newbie Poster
mrityunjay22 is offline Offline
19 posts
since Oct 2007
Oct 18th, 2007
0

Re: code is nopt updating the database as given below

what includes J2EE means whats the specification for j@EE does it include EJB and STRUTS
Reputation Points: 10
Solved Threads: 0
Newbie Poster
mrityunjay22 is offline Offline
19 posts
since Oct 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Java Forum Timeline: cannot find symbol error message
Next Thread in Java Forum Timeline: compiler errors wargame





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC