Did you close the statement and the printwriter ?
like statement.close and out.close ? and check for the
getmethod whether you are getting the right TYPE from the database.
String for String and float for Float.
Also the better method would be to have a String Buf = new StringBuffer.
and use it like

while(rset.next()
{
   buf.append(rset.getString(1); +
   etc..
}
statement.close();
out.println(buf.toString());
out.close();

Bye
Krishnan

________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to