とあるプログラマの備忘録

都内某所に住むプログラマが自分用に備忘録を残すという趣旨のブログです。はてなダイアリーから移動しました!

【SamuraiFw】excecuteQueryからembody作成

$rows = $this->TextManager->executeQuery($sql,$params);

while($row = $rows->rows->fetch(PDO::FETCH_ASSOC)){

    //Embody化
    $record = new ActiveGatewayRecord($row, false, $this->TextManager->table);
    $embody= $this->TextManager->toEmbody($record);
}