Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Number Format exception

Status
Not open for further replies.

loneill

Programmer
Mar 4, 2002
12
IE
Hi I am using Interbase with Java Server Pages. I am connecting them over a network. The Page is connecting but I have an error:

java.lang.NumberFormatException:
at java.lang.Integer.parseInt(Integer.java:435)
at java.lang.Integer.parseInt(Integer.java:463)
at interbase.interclient.Driver.connect(interbase/interclient/Driver.java:169)
at java.sql.DriverManager.getConnection(DriverManager.java:517)
at java.sql.DriverManager.getConnection(DriverManager.java:177)
at org.apache.jsp.Test$jsp._jspService(Test$jsp.java:70)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)

Does anyone know what this means??
 
I take it that this error message comes up when you try to do something with the data itself - rather than just connect to the database ?

If so - then it sounds like it is expecting an integer value - but failing to read the data. I would confirm what format the data takes.

Opp.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top