python - Does the MySQLdb module support prepared statements? -
this question has answer here:
does mysqldb support server-side prepared statements? can't figure out manual.
check mysqldb package comments:
"parameterization" done in mysqldb escaping strings , blindly interpolating them query, instead of using mysql_stmt api. result unicode strings have go through 2 intermediate representations (encoded string, escaped encoded string) before they're received database.
so answer is: no, doesn't.
Comments
Post a Comment