Help  |   Contact Us  |   About Us  |   News and Events
Books, conferences, and other information about... Moving to Linux Switching to OOo Building Linux Apps Using Visual FoxPro
Buy      Download      Your Account      Catalog      Support      Conferences      Resources      Fun

MySQL Client-Server Applications with Visual FoxPro
Updates/FAQ/Errata

If you have a question about the technical contents of this book, please contact the author(s). Their email address(es) can usually be found in their bios in the About the Author section at the front of the book or on the author's bio page (click on the author's name on the book's main page.



Pg 115: There should be a double quote after the last ; and before the last:

m.liH=sqlstringconnect(driver={MySQL ODBC 3.51 Driver};" ;
+ "SERVER=192.168.xxx.xxx;" ;
+ "UID=bob;" ;
+ "PWD=secret;)

should be:

m.liH=sqlstringconnect(driver={MySQL ODBC 3.51 Driver};" ;
+ "SERVER=192.168.xxx.xxx;" ;
+ "UID=bob;" ;
+ "PWD=secret;")


Pg 118: There should be an additional line in firstconnect.prg (ch06.zip).

After creating database test_cust, you have to use it before you can create a table in it.

* select the database
? SQLEXEC(m.liH,"USE test_cust")

Pg 118: Change the field names in firstconnect.prg (ch06.zip).

so that they are all 'cName'.