0

返されたデータベース オブジェクトからフィールド名とレコード値を取得しようとしています。クエリ実行用の datahandler.py ファイルがあります。ソースファイルの1つからデータハンドラーメソッド(たとえば、GetEmployeeinfo(id)など)をヒットすると、オブジェクトが返されます。GetEmployeeinfo(id) によって返されるオブジェクトからフィールド名とレコードの値を取得する方法を知りたいです。

MyCode は次のようになります。

従業員.py

 class EmployeeForm(BrowserView)

 def getEmployee(self):
    handler=self.MyDBHandler()
    emp_info=handler.GetEmployeeinfo(id=1) // this return the object from a 
                                              GetEmployeeinfo(id)
    return emp_info

dbhandler.py

  class MyDBhandler():

  def GetEmployeeinfo(id,dic=0)
    //some select statement query goes here 
     return []
    // it return the object instance like "<My.Product.dbhandler.xxxx>"

Employee.py ファイルの戻りオブジェクトからフィールド名とレコードを取得して、レンダリング ページに返す方法を知りたいです。

前もって感謝します。

4

1 に答える 1