| Author |
SqlException accured at processing Jsp
|
ramesh poorella
Ranch Hand
Joined: Jul 19, 2011
Posts: 42
|
|
Hai...
this is my jsp...
when i am processing above jsp i am getting exception at
then how can i solve that exception and print values
|
 |
Smitesh Shinde
Ranch Hand
Joined: Feb 16, 2008
Posts: 44
|
|
Ramesh, first of all JSP isn't place to write your application logic. It is considered as bad practice.
Regarding your exception problem -
You can't be absolutely sure of which exception your JSP is throwing. You'll always get java.lang.SQLException in every case as you are explicitly throwing it from your code. Try to print the stack trace to get the exact exception.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56201
|
|
|
As Smitesh Shinde pointed out, the first step os to move the Java code out of the JSP and into a Java class where it can be properly tested.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: SqlException accured at processing Jsp
|
|
|