Corrado Gioannini <[EMAIL PROTECTED]> wrote:

> I often do things like this:
> 
>   sql = a_complex_select_sql % (id_foo, value_bar, ...)
>   cursor.execute(sql)
> 
> inside the body of a function (or a class method), where
> a_complex_select_sql is a string, containing several %s, %d ecc., 
> that is defined globally (or somewhere else in the class).
> 
I hope you have a good reason why you don't do:

  cursor.execute(a_complex_select_sql, (id_foo, value_bar, ...))

instead.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to