Alex Salle wrote: > Is symfony incompatible with MySQL 5? It's throwing: > > > [wrapped: Could not execute query [Native Error: You have an error > in your SQL syntax; check the manual that corresponds to your > MySQL server version for the right syntax to use near 'condition, > estimated_delivery, warranty, categories, brands WHERE > products.CATEG' at line 1] > > > It works in MySQL 4, but not in 5. I've rebuilt models using > propel-build-model and it still won't work. > > Thanks! > > - Alex > >
Looks like you are using reserved words for field names like "condition" :) Check the reserved words of mysql5 with the names of your table fields and you will find the problem. Kiril --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
