I use Python and MySQLdb to download web pages and store them into database. The problem I have is that I can't save complicated strings into database because they are not escaped properly.

Is there a function in Python I can use to escape a string for MySQL? I tried with ''' (tiple simple quotes) and """, but it didn't work. I know that PHP has mysql_escape_string(), is something similar in Python?

Thanks,

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Python's DB-API solves this in a much cleaner way - instead of commingling the statement and the data, it uses parametrized queries. See the accepted answer to http://stackoverflow.com/questions/775296/python-mysql-with-variables for one example of how to use these with mysqldb

link|improve this answer
Thanks for your answer, too. – Laurențiu Dascălu Sep 1 '10 at 10:37
feedback
conn.escape_string()

See MySQL C API function mapping: http://mysql-python.sourceforge.net/MySQLdb.html

link|improve this answer
Thanks, it worked! – Laurențiu Dascălu Sep 1 '10 at 10:36
+1 ... Perfect answer. Surprised to see so many complicated answers out there. Clearly, param'ed queries don't take into account for long strings (text) that is being stored. – Mike Nov 18 '10 at 23:59
+1 I love the black and white HTML pages with swear words and code. – Droogans Dec 29 '11 at 1:07
feedback

Use the re.escape() function for this:

4.2.3 re Module Contents

escape(string)

Return string with all non-alphanumerics backslashed; this is useful if you want to match an arbitrary literal string that may have regular expression metacharacters in it.

In the example below you can see that all special characters are escaped which allows you to store even fancy html in MySQL databases.

re.escape('*&^%$^HELLO')
'\\*\\&\\^\\%\\$\\^HELLO'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.