Check MySQLdb Package Comments :
"Parameterization" is performed in MySQLdb by escaping strings and then blindly interpolating them into the query, instead of using the MYSQL_STMT API. As a result, unicode strings must go through two intermediate representations (encoded string, escaped string) before they are received by the database.
So the answer is: No, it is not.
Eugene Yarmash Mar 11 '10 at 14:05 2010-03-11 14:05
source share