這些提取有什麼區別? 請給我參考網站的例子來獲得清晰idea.still我與它請解釋這些Python提取類型
res = cr.dictfetchall()
res2 = cr.dictfetchone()
res3 = cr.fetchall()
res4 = cr.fetchone()
CR迷惑是當前行,從數據庫光標(OpenERP的7)
例如:
def _max_reg_no(self, cr, uid, context=None):
cr.execute("""
select register_no as reg_no
from bpl_worker
where id in (select max(id) from bpl_worker)
""")
res = cr.fetchone()[0]
print (res)
return res
你的示例代碼中的「cr」是什麼? – 2013-03-28 10:50:51
@olly_uk: 張貼編輯好友 – 2013-03-28 10:54:25
[有關PEP-249中每種方法的完整說明](http://www.python.org/dev/peps/pep-0249/#cursor-methods) – 2013-03-28 10:57:11