|
From: Timothy S. <ti...@op...> - 2004-11-04 08:14:32
|
Hello, when i use fetch all i have a problem with what s returned.
everything is returned as this string ['data'] which makes is very
inconvienent to work it. is there better way of fetching things then i
am using? here is my code
cur = db.cursor()
cur.execute("SELECT UserGroup FROM UserMenuInfo WHERE UserName = UserName")
groups = cur.fetchone()
|