As part of learning how to use FM Pro 9 and MySQL I built a FM base called testbase that has one table with three fields: 'id', 'apellido', 'nombre'. I also created an MySQL base also with 3 fields named the same way. 'id' is integer, the other two text (varchar).
I created a simple script (a loop) in FileMaker that includes the following Execute SQL script step:
"INSERT INTO cliente (id,apellido,nombre) VALUES (" & testbase::id & ",'" & testbase::apellido &"','"& testbase::nombre &"')"
The script works on all records except when either apellido or nombre includes accents or other high ascii characters. Instead I get an error:
"ODBC Error: [Actual][MySQL] You have an error in your SQL syntax. Check the manual etc."
What am I doing wrong or what should I do?