Errata


Print Print Icon

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



Version Location Description Submitted By
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 
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