On 2013-06-12, Grant Edwards <invalid@invalid.invalid> wrote:
> On 2013-06-12, Tim Roberts <t...@probo.com> wrote:
>> ???????? ?????? <nikos.gr...@gmail.com> wrote:
>>>
>>>[code]
>>>             if not re.search( '=', name ) and not re.search( '=', month ) 
>>> and not re.search( '=', year ):
>>>                     cur.execute( '''SELECT * FROM works WHERE clientsID = 
>>> (SELECT id FROM clients WHERE name = %s) and MONTH(lastvisit) = %s and 
>>> YEAR(lastvisit) = %s ORDER BY lastvisit ASC''', (name, month, year) )
>>>             elif not re.search( '=', month ) and not re.search( '=', year ):
>>>                     cur.execute( '''SELECT * FROM works WHERE 
>>> MONTH(lastvisit) = %s and YEAR(lastvisit) = %s ORDER BY lastvisit ASC''', 
>>> (month, year) )
>>>             elif not re.search( '=', year ):
>>>                     cur.execute( '''SELECT * FROM works WHERE 
>>> YEAR(lastvisit) = %s ORDER BY lastvisit ASC''', year )
>>
>> There is so much you didn't tell us here, including which database you are
>> using.
>
> Are you guys _still_ on Nikos hook?
>
> [No, I don't really think he's trolling, but it would be really
> impressive if he were.]

He's definitely trolling. I can't think of any other reason to
make it so hard to kill-file himself.

-- 
Neil Cerutti
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to