jsp code compilation error 1 Answer(s) 3 years and 5 months ago
Posted in : JSP-Servlet
hai, iam doing online banking project.i created two database tables in mysql.Table1: user (username,password) Table2: myaccounts (accno,username,balance).
for funds transferring, i had written the following code.but it shows the following error.can you tell me where is the error and also what is the proper code for funds transfer.
<%@page import="java.sql.*"%> <% int acc1=Integer.parseInt(request.getParameter("no")); int bal=Integer.parseInt(request.getParameter("amount")); int acc2=Integer.parseInt(request.getParameter("to"));
try { Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/register";, "root", "root"); Statement st = con.createStatement();
ResultSet rs = st.executeQuery( "select balance from myaccounts where ano='"+acc1+"'");
int balance1=0; while (rs.next()) { balance1=rs.getInt("balance"); } ResultSet rs1 = st.executeQuery( "select balance from myaccounts where ano='"+acc2+"'");
int balance2=0; while (rs1.next()) { balance2=rs1.getInt("balance"); }
int bal1=balance1-bal; int bal2=balance2+bal;
st.addBatch("update myaccounts set balance="+bal1+" where ano='"+acc1+"'"); st.addBatch("update myaccounts set balance="+bal2+" where ano='"+acc2+"'"); st.executeBatch(); out.println("Transaction has been successfully done."); } catch(Exception e){} %>
note The full stack trace of the root cause is available in the Apache Tomcat/5.0.30 logs.
View Answers
January 5, 2010 at 10:49 AM
Hi Friend,
Try the following code:
<%@page import="java.sql.*"%> <% int acc1=Integer.parseInt(request.getParameter("no")); int bal=Integer.parseInt(request.getParameter("amount")); int acc2=Integer.parseInt(request.getParameter("to"));
try { Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/register", "root", "root"); Statement st = con.createStatement();
ResultSet rs = st.executeQuery( "select balance from myaccounts where accno='"+acc1+"'");
int balance1=0; while (rs.next()) { balance1=rs.getInt("balance");
} ResultSet rs1 = st.executeQuery( "select balance from myaccounts where accno='"+acc2+"'");
int balance2=0; while (rs1.next()) { balance2=rs1.getInt("balance");
}
int bal1=balance1-bal; int bal2=balance2+bal;
st.addBatch("update myaccounts set balance="+bal1+" where accno='"+acc1+"'"); st.addBatch("update myaccounts set balance="+bal2+" where accno='"+acc2+"'"); st.executeBatch(); out.println("Transaction has been successfully done."); } catch(Exception e){} %>
Thanks
Related Pages:
java Compilation error:jsp code - JSP-Servlet
java Compilationerror:jsp code I am getting an Generated Servlet error:
String literal is not properly closed by a double-quote.
here is my code:
<%
{
Dbclass2 d= new Dbclass2
jsp code compilation error - JSP-Servlet jspcodecompilation error hai, iam doing online banking project.i... is the error and also what is the proper code for funds transfer.
HTTP... The server encountered an internal error () that prevented it from fulfilling
compilation error - JSP-Servlet compilation error Hi sir, i'm using following code to upload an image to the database.I'm facing the following problem.
<%
String...(longblob)) in the database and try the following code:
<% String
java compilation error - JSP-Servlet
java compilation error i have created an employee table in mysql and connected it using JDBC, now i have to do client side validations, can u please... code
compilation error compilation error Hi my program below is not compiling,when I try to compile it i'm getting the error message "tool completed with exit code 1... java.util.*;
import java.text.*;
class HardwareItems
{
String code
Compilation error. Hibernate code - Hibernate Compilationerror. Hibernate code Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory...)
how to rectify that error in hibernate Hi Friend,
You have
java compilation error - Applet
java compilation error I am getting compilationerror in the following code.:
public void paint(Graphics g)
{
switch(screen...;
}
}
Error is:
Illegal start of expression
Plz. find why am I getting this error
java compilation error - Hibernate
java compilation error hi
i am getting org.hibernate.exception.GenericJDBCException: Cannot open connection exception when runnig the code why this exception is coming
jdbc compilation error - JDBC
jdbc compilation error java.lang.Exception: Problem in call_select
when i am executing the program i am getting the above error. how can i resolve it? Hi friend,
plz specify in detail and send me code
Java compilation error - JSP-Servlet
*;
^
An error occurred at line: 18 in the jsp file: /employee_upload_profile...);
^
An error occurred at line: 18 in the jsp file...();
^
An error occurred at line: 18 in the jsp file: /employee_upload
java compilation error - JSP-Servlet
java compilation error How to compile a java Program,If i am having jdk1.5 in webligic it support jdk1.4..When i put a .class file into WEB-INF/classes/Mybeans/Datacon.class it was given a error Hi friend
java compilation error - JSP-Servlet
java compilation error hi,
i have created a table in MYsql and connected it using JDBC, I have to now validate those fields using jsp, so please can you suggest me a way how to validate using jsp, my table has fields
java compilation error - Applet
java compilation error hi friends
the following is the awt front design program error, give me the replay
E:\ramesh>javac...,
Plz give full details with source code and visit to :
http
java compilation error - JSP-Servlet
java compilation error i have a field like name if name is not given then it should give an alert like name cannot be null, i want this type of validations. Hi uma,
I am sending you a link. This link will help
srvlet compilation error - JSP-Servlet
srvlet compilation error while compiling a servlet, httpservlet class not found errors & many such class not are generated. Hi Friend,
It seems that compiler haven't found the servlet-api.jar file.So put
java compilation error - JSP-Servlet
java compilation error sir ,i have jdk1.6.0_01 and textpad installed .I have also set classpath and path.But stil on compiling my servlet programs in textpad i get compile time errors like javax.servlet.* ,javax.servlet.http.
Java Compilation error - SQL
Java Compilation error ava.lang.NullPointerException
at beanUtils.SaleHeaderUtility.getFullRemainPatientList(SaleHeaderUtility.java:754... post your code.
Thanks
java compilation error - JSP-Servlet
java compilation error i want to do client side validations using JSP, so please can u suggest me a way out.thanq very much for the previous answers... validations.........u will find some js files download that and include i the jsp
compilation error - Java Beginners compilation error i 'm not able to compile a program :
prblem...; Post your code. //this is person code!!
public class Person...=dog;
}
public Dog getDog()
{
return dog;
}
}
//this is Dog code
java compilation error - Ant
java compilation error hi, i have a application in which i m reading from an xml file and then storing its values in database.but when i started.... do let me know? Hi Friend,
Please post your code.
Thanks
Java Compilation error - JSP-Servlet
Java Compilation error hi i m vipul chauhan , i having a problem with this package
i download package from the location http://commons.apache.org...-fileupload-1.2.1.jar but still there is a problem and when i compile my file this error
compilation error - Java Beginners compilationerror import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class BLayout implements ActionListener
{
JFrame f...,BorderLayout.CENTER};
for(int i = 0 ; i Hi Friend,
Try the following code
compilation error - Java Beginners compilation error class s
{
public static... this program it is giving an error as integer number is too large.why? and what... not in the Hexadecimal or Octal. Here is fraction of Java code example which will help you
compilation error - Java Beginners compilation error sir what is the error inthis code
after executing the below code i got
java.lang.NoSuchMethodError: main
Exception... org.array.Group
Correct Code :
package org.array;
import java.io.
java compilation error - Java Beginners
java compilation error Sir Thanx for ur response for reading a doc file but when i tried to execute ur codecompilationerror occurs,
it says --> org.apache.poi.hwpf package does not exist.
-->
java compilation error - Java Beginners
java compilation error HELLO SIR,I HAVE ASKED QUESTION AND I GOT REPLY FOR THAT ALSO BUT I AM GETING COMPILATIONERROR UNCHECKED OR UNSAFE OPERATION... be a deprecated method which shows that message.Even then,if you run the given code,you
Java Compilation error - Java Beginners
Java Compilation error I got this error while convert java to pdf.../size
can somebody told me how to handle this error... Hi Friend,
Please send your code.
Thanks
Its ok...
i already solved
java compilation error - Java Beginners
occurs.Even then if you found error,send the full code.
Thanks...java compilation error I need to know how to correct a compiler error for my program to run. The error I keep getting is unclosed string literal
Java Compilation error - Java Beginners
Java Compilation error
i wrote a simple hello world program i get this error every time please help
Exception in thread "main...,
Please send your code so that we can help you.
Thanks
java compilation error - Java Beginners
java compilation error Hello,
I'm having problems with trying to correct 2 compiler errors. The code I'm having trouble with is listed below. It's flagging two errors for this one code. The first error says identifier
java compilation error - Java Beginners
java compilation error i am going to type program and the error is shaded one this one is giving error please sole this one sir
import java.io....:"+ch);
}
}
Hi friend,
Having some error in your code check
java compilation error - Java Beginners
java compilation error i am going to type program and the error is shaded one this one is giving error please sole this one sir
import java.io....:"+ch);
}
}
Hi friend,
Having some error in your code check
Java compilation error - Java Beginners
Java compilation error Hello I am having this problem while...\AccountRecord.java
I save AccountRecord.java in ch14
However I get an error saying... your code so that we can solve your problem.
Thanks
java compilation error - Java Beginners
java compilation error Dear Sir ........
I was installed the java... writing my code through command line instead of a note pad but while compiling I'm getting the error like file not found : exxx.java(my file name is exx),
Ill
Compilation error in java - Java Beginners Compilationerror in java i have a properties file named... that file in java class,my code is
Properties props = new Properties();
File... FileInputStream(f);
props.load(in);
but i got a error the system could
java compilation error - Swing AWT
java compilation error NestedPopupMenu n = new NestedPopupMenu();
getting error as "local variable n is never read Hi dharani,
This is running code. I hope that this code will help you.
import java.util.
compilation error in java - Java Beginners compilationerror in java Here is the pgm usinf if-else statement.... For removing the error you have to use the String type in place of char & your code... the following code:
class grade
{
public static void main(String [ ] args
java compilation error - Java Beginners
java compilationerror 1)java code:
import java.awt.*;
import...(multBut);
}
}
****** its code is being compiled . But the command java ButtonPanelApplet does give me error of "exception in thread main...."  
Java Compilation error - Java Beginners
Java Compilation error how to put 2 classes on java program?and what shall i do if symbol not found appear? Hi Friend,
Try the following code:
class Determine{
public int add(int a,int b){
return a+b
Java Compilation Error - Java Beginners
Java Compilation Error
Actually Iam having a packaging. Whatever... imported packages.
What ever error iam getting is at the array usage. So, guide me regarding that. Hi friend,
We check your code having some
java compilation error - Java Beginners
java compilation error Hello,
I had recently sent an email and got a response regarding how to add an image to a GUI. I used the code...);
MY ERROR FLAGS HERE public class DisplayImage extends Panel {
BufferedImage
Java Compilation error - Development process
Java Compilation error hi
my serious problem is,how can i upload a file directly to the current remote database..
Below steps might work.
1. Create db connection to xls file using code you posted.
2. Create db
java compilation error - Java Beginners
java compilation error Hello,
I sent a previous message regarding... can't run it
ProductInventoryVGUI
Uncaught error fetching image... thats maybe why I'm getting that error message. Is there a way I can find an image
java compilation error - Java Beginners
java compilation error package punitha;
import java.util.Vector... code here:
ReadFile rf=new ReadFile(file.getAbsolutePath... calling other java pgms like k-means and Readfile...
when i execute am getting error
java compilation error - Java Beginners
haven't provide the code of classes Product and Inventory2.Thatswhy 2 error occurs...java compilation error here is the rest of my codes. I hope you...)
{
ProductInventory2.addProduct(temp);
repaint();
MY COMPILER ERROR BEGINS BELOW
Java compilation error - Java Beginners
Java compilation error I place the following code in to my program but get a compile error of cannot resolve symbol on this code...:
fullFileName.append(SPREADSHEETEXTENSION); Hi friend,
Plz give full source code
java Compilation
java program compilation time following error is occur in my system
Note...:unchecked for details.
1 error
so plz send me answer why this error is coming....
To avoid this error, specify the type of object you're storing in the collection. So
java Compilation
java program compilation time following error is occur in my system
Note...:unchecked for details.
1 error
so plz send me answer why this error is coming....
To avoid this error, specify the type of object you're storing in the collection. So
java Compilation
java program compilation time following error is occur in my system
Note...:unchecked for details.
1 error
so plz send me answer why this error is coming....
To avoid this error, specify the type of object you're storing in the collection. So