-1
我無法解釋來自Kohana 3 ORM框架的此ORM查詢。請幫我理解這一點:這個ORM kohana3查詢做了什麼?
$member_type_id=ORM::factory("member")->where('id',$videos[$count]->member_id)->find();
我無法解釋來自Kohana 3 ORM框架的此ORM查詢。請幫我理解這一點:這個ORM kohana3查詢做了什麼?
$member_type_id=ORM::factory("member")->where('id',$videos[$count]->member_id)->find();
SELECT * FROM member WHERE id = <$videos[$count]->member_id>
查詢將最多有一個結果返回。
當我編寫這個查詢時,它給出以下錯誤消息:$ sql = DB :: query (Database :: SELECT,「select * from member where'id'= $ videos [$ count] - > member_id); ErrorException [可恢復錯誤]:類stdClass的對象無法轉換爲字符串 – json
只是一個側面說明:對於Kohana3 ORM,這是行不通的。 where方法需要3個參數:' - > where('id','=',$ videos [$ count] - > member_id)' – SpadXIII