MySQLdb
Hi all. I have a mod_python script with two query: cursor = db.cursor() sql = 'SELECT * FROM users where username=\'' + username +'\'' cursor.execute(sql) result = cursor.fetchall() num = int(cursor.rowcount) if num == 0 : sql2 =
Re: MySQLdb
On 22 Nov, 16:00, Gerald Walker wrote: > Kill Joy wrote: > > Hi all. > > > I have a mod_python script with two query: > > > cursor = db.cursor() > > > sql = 'SELECT * FROM users where username=\'' + username +'\'' >