
118 DB2 II and WPS Synergy
sql.append("SCORER_OUTPUT\n");
stmt = connection.prepareStatement(sql.toString());
......
Example 5-11 JSP scriptlet displaying discount eligibility percentage
<% if (imPredicition != null || (imPredicition.length() > 0)) { %>
<% if (imPredicition.equals("0")) { %> <font color="#ff0000">You are NOT
eligible for coverage</font> <%}%>
<% if (imPredicition.equals("1")) { %> <font color="#ff0000">You are eligible
for a 3% discount</font> <%}%>
<% if (imPredicition.equals("2")) { %> <font color="#ff0000">You are eligible
for a 8% discount</font> <%}%>
<% if (imPredicition.equals("3")) { %> <font color="#ff0000">You are eligibl ...