db=sqlite.connect("test.sqlite") res=db.execute("select * from table") 通过迭代,我得到了对应于行的列表。 for row in res: print row 我可以 ...
確定! 回上一頁