Hi,
I have a jsp application in which it consists of some text fields.when ever we enter data into the text fields the data should be stored in database which is happening in the case of strings through this code
String USER_NAME = request.getParameter("USER_NAME");
but when i want to insert a number or integer value it is not storing
please help me how to write code for storing an integer value into database from textfields of jsp application.
Thanks in advance