Errata

Java Database Best Practices

Errata for Java Database Best Practices

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page 17
2nd paragraph, example code

Button button = new Button(bundle.getString("SAVE");

NOW READS:
Button button = new Button(bundle.getString("SAVE"));

Anonymous    May 01, 2004
Printed
Page 34
Figure 2-2

Primary key for artist table shoud be artistID, not songID.

Anonymous   
Printed
Page 42
Figure 2-8

The rating attribute of the film table must be a FK instaed of a PK.

Anonymous   
Printed
Page 215
Example 11-1

In the first four lines of JSP, an extra double quote symbol (") HAS BEEN DELETED.

Anonymous    May 01, 2004
Printed
Page 223
Example 11-4.

Properties p = new Properties();;

NOW READS:
Properties p = new Properties();

Anonymous    May 01, 2004
Printed
Page 233
first paragraph, example code

stmt.executeUpdate();;

NOW READS:
stmt.executeUpdate();

Anonymous    May 01, 2004
Printed
Page 233
3rd paragraph, sample code

accounts[i].setBalancce(stmt.getFloat(2));

NOW READS:
accounts[i].setBalance(stmt.getFloat(2));

Anonymous    May 01, 2004
Printed
Page 251
first code sample

mgr.deletePersietent(book)
should be
mgr.deletePersistent(book)

Anonymous