私はこれを使用しています:
$stmt = $this->getEntityManager()->getConnection()->prepare('SELECT * from tbl_users');
$stmt->execute();
結果を変数に戻す方法:
$stmt->getResults()
動かない
私はこれを使用しています:
$stmt = $this->getEntityManager()->getConnection()->prepare('SELECT * from tbl_users');
$stmt->execute();
結果を変数に戻す方法:
$stmt->getResults()
動かない
結果の取得を忘れていました。fetchAll()
あなたを助けることができます:
$stmt = $this->getEntityManager()
->getConnection()
->prepare('SELECT * from tbl_users');
$stmt->execute();
$result = $stmt->fetchAll();
TblUsers
データをフェッチした後にハイドレートしたい場合は、次のことを試すことができます。
$tblUser = new TblUsers();
$tblUser->fromArray($result);