| Author |
servlet database connnetivity using MS SQL server
|
Catherine austin
Ranch Hand
Joined: Jul 20, 2011
Posts: 43
|
|
The following code runs fine but prints "failed connection" .
Here's the code :" form.html"
Code for servlet : "ganesha.java"
Kindly help me sort out this.
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3795
|
|
You're printing "Failed connection" in a finally block. That means it's always going to be printed - the finally block will always run (that's what it's for).
I suspect what you really wanted to do was print that out if there's an exception, in which case it needs to be in a catch block.
|
 |
 |
|
|
subject: servlet database connnetivity using MS SQL server
|
|
|