python 2.4.1
mySQLdb 1.2.0
kernel 2.6.12
Hi,
How can I make the following statement so I can search for any string?
Right now I need to input at runtime %whatever I'm looking for% between % signs to get all records matching that query.
I want to have this statement set up so I do _not_ have to type the % at runtime.
This is what I have...
cursor.execute('select * from someTable where s_about like %s', (searchWhat))
any idea on how to achieve this?
el chupacabra