FriendsOfSymfony1 / doctrine1

[DEPRECATED -- Use Doctrine2 instead] Doctrine 1 Object Relational Mapper.
http://www.doctrine-project.org
GNU Lesser General Public License v2.1
40 stars 75 forks source link

Add MySQL SQL mode getter/setter #29

Closed endelwar closed 2 years ago

endelwar commented 7 years ago

This patch add getter/setter for MySQL SQL mode and a new method to get MySQL server version in a structured way

MySQL 5.7 GA release (5.7.9) change the default SQL mode from NO_ENGINE_SUBSTITUTION to ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION breaking some legacy applications: thanks to these methods sql_mode can be changed on the fly with Doctrine

endelwar commented 7 years ago

Is this PR going to be considered for inclusion?