これらのフェッチの違いは何ですか? 明確なアイデアを得るために参照サイトの例を教えてください.それでも私はそれと混同しています
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