Jorge Godoy wrote:

> I know.  I'm just trying to see if there might be some magic going on with his
> driver... 

Since raw strings have no effect on format specifiers, that won't tell 
you anything.

 >>> r'%' == '%'
True

His problem is that cursor.execute does format expansion with %, so a 
single % is not legal.

-- 
Erik Max Francis && [EMAIL PROTECTED] && http://www.alcyone.com/max/
San Jose, CA, USA && 37 20 N 121 53 W && AIM erikmaxfrancis
   We are victims of our circumstance.
   -- Sade Adu
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to