JSP 2.0 p492 errata
The code on p 492 reads:
ResultSet rst = stmt.executeQuery("select * from book");
It should read:
ResultSet rst = stmt.executeQuery("select * from Book");
While this may run on a WinNT system, a case sensitive system
like Linux won't let you read the table if the case is incorrect.
Cheers,
|