MySQL in a Nutshell by Russell Dyer The following errata were *corrected* in the 4/07 reprint. This page was updated April 11, 2007. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification #################################### {100} DECODE() syntax; ENCODE -> DECODE #################################### {140} 2nd para - under UTC_DATE; Universal Time Clock -> Universal Time, Coordinated #################################### (150) Section on MAX(), 1st sentence; This function returns the lowest number in the values for column. -> This function returns the highest number in the values for column. #################################### (205) "Capturing Data" section, code snippet; { print "$title ($author} \n"; } -> { print "$title ($author) \n"; } #################################### (207) 1st paragraph, sentences 4-5; Each record's array is parsed into separate variables. The the values of the variables are displayed. -> Each record's array is parsed into separate variables, then the values of the variables are displayed. #################################### {255} first code snippet; exit() -> exit(EXIT_FAILURE) #################################### {255} second code snippet exit(EXIT FAILURE) -> exit(EXIT_FAILURE) #################################### {256} first code snippet; exit(EXIT SUCCESS); -> exit(EXIT_SUCCESS); #################################### {255} Compile command: -L/usr/include/mysql -> -I/usr/include/mysql ####################################