Errata

Adobe AIR 1.5 Cookbook

Errata for Adobe AIR 1.5 Cookbook

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.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

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

Version Location Description Submitted by Date submitted
Printed Page 223
last 2 lines

Text reads:
catch (error:SQLError)
{
mx.controls.Alert.show("Error message:", event.error.message);
mx.controls.Alert.show("Details:", event.error.details);


It should read:
catch (error:SQLError)
{
mx.controls.Alert.show("Error message:", error.message);
mx.controls.Alert.show("Details:", error.details);


As is, it would cause 2 errors resulting in a failure to compile the application.

Nathan Daniel  Dec 22, 2008 
Printed Page 264
first script

myDBClass public functions are used as if they were static, but they aren't

so the codes
myDBclass.createTableDB(myDB);
myDBclass.insertData(myDB);
generate an error

This is repeated in the chapter on each example

Francois Jacquier  Jul 06, 2009