ok, looking more closely at the Stored procedure code in
https://www6.software.ibm.com/dw/education/dm/db2spdc/sp.java , it has the
following piece of code:
while (rs1.next())
{.....}
How is rs1 being populated?? I don't see it in the code. Should there not
have been something along these lines in the code:
rs1 = stmt.getResultSet();
Is the above piece of code missing and is this the reason why the code is
throwing a NullPointerException?
TIA
Raquel.