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 11
2nd paragraph

the text reads:
CFML tags are not case sensitive (<cfoutput> and <cfoutput> both work).

That sentence would only make sense if there was a difference in the case
between the two tags.

Anonymous 
Printed Page 527
Example 17-1

The value of CFCHART's "xaxistype" attribute should be set to "category" not "scale".
If set to "scale", using non-numerals ("Greg", Nick", etc) as the values of
CFCHARTDATA's "item" attribute will generate a runtime error.

Anonymous 
Printed Page 580
right before the last two paragraphs on the page

The line:
cfcatch("ExceptionType", ErrorVar)

Shouldn't it be something like this:
catch("exceptionType" nameOfExceptionInfoStructure);

Anonymous 
Printed Page 665
2nd block of code

Instead of:
<cfset myObj.setEmployee(argumentcollection=args)>

Should it be:
<cfset myObj.getEmployee(argumentcollection=args)>

Because there is no method called setEmployee for the 'employee' CFC.

Anonymous