Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据库表中有很多记录。如果我想用 Idiorm 获取所有记录,那么我找不到这个。实际上我有 20000 条记录,我想要所有的查询。Idiorm 不可能。
怎么可能。
这是我的代码:
$app = Slim::getInstance(); $recipe= ORM::for_table('recipes')->find_many();
找到了这个问题的解决方案。您需要在查询之前添加这些行
ORM::configure('return_result_sets', true);
感谢@Dagon 帮助您找到正确的解决方案。