Nullpointerexception
Hi,
I have the following peice of code.
<ora:loop name="orderInfo" loopId="row" className="Row" >
<%= row.getString("test") %>
I hav a coulum test in the result set. Some times the column test might hav no values.I have to display the the value whenever it constains one. How can I do it? I tried the following but it throws me nullpointerexception.
<%if(row.getString("test") !=null){ %>
<%= row.getString("test") %>
<%} %>

