我有一個名爲foo的數據庫(mysql)表,它的主鍵是bigint類型,並且自動增加, 我寫了下面的代碼中插入一條記錄並獲得該記錄的主鍵web.py db.insert函數拋出錯誤:<type'exceptions.TypeError'>:'long'object is unsubscriptable
q = db.insert('foo', name='bob', age=2, _test=True)
print q
這個紀錄一直插入到表中,但我得到了以下錯誤:
type 'exceptions.TypeError' : 'long' object is unsubscriptable
你能幫忙我該怎麼辦?