cur.execute('select * from user')
这个之后需要自己遍历返回的结果:
r = cur.execute('select * from user')for row in r: print r