Comment 2 for bug 750657

Revision history for this message
Geert JM Vanderkelen (geertjmvdk) wrote :

The MySQLConverter.quote() can't be used directly, you have for first convert to something MySQL understands, for example:
  c = MySQLConverter()
  c.quote(c.escape('ham'))

We might need a quote() function which can be used directly, without the need for first escaping it, although it would be doing what the above does.