At the MySQL Developers Meeting in Heidelberg there were show off
sessions where each team had a chance of showing their best to
others.
As part of this shut out presentation, I demonstrated some
MySQL Proxy magic.
This is a sample session from that presentation.
mysql> select 1 + 1;[Read more]
+-------------------------------+
| ERROR |
+-------------------------------+
| Don't understand these digits |
+-------------------------------+
1 row in set (0.00 sec)
# Hmmm!
# Let's try to make it understand ...
mysql> set sql_mode='english_digits'; # You did not know we could do that. Did you?
Query OK, 42 rows affected (0.01 sec)
mysql> select 1 + 1;
+--------+
| result |
+--------+
| two |
+--------+
1 row in set (0.00 sec) …