> You're using a parametrised query (which is good :-)), but you've included
> quotes around the placeholders. There's no need to do that. They'll be
> quoted automatically when necessary:
>
> sql = "INSERT INTO product_description (product_id, language_id, name,
> description) VALUES (%s,%s,%s,%s)"

Thanks a lot it woooorks. I was looking in the wrong direction (escape
str. raw etc) Thanks again :-)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to