It seems I always have to pass a resulthandler even if I delete a record.
For example this code:
==>
try {
sql = "delete from Client where (ClientID=40)";
runner.query(conn, sql, null, rsh);
} catch (SQLException se) {
System.out.println(se.getMessage());
return;
}
==>
I have to pass ResultHandler rsh which must be non-null.
Why is this ?
--
John Zoetebier
Web site: http://www.transparent.co.nz
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]