Convert a Text Input field to numeric or int
I'm working with JSP (tAGliB) and I have include a Input test see below:
Type Odds: <input type="text" name="TXTODDS" value="" size="6" /
I need to convert this text field to a numeric field this field will be inserted into a SQL sentence :
><sql:update dataSource="${datasource}" >
UPDATE ESRIOSJ.OPENCUT99 SET ODDS=? WHERE PLT=32 AND TOTREC>0
<sql:param value="${param.TXTODDS}"/>
</sql:update>

