0

我想在 id 时遇到任何表的问题。

#MYTABLE publireportaje
idxx - name - last

#THE CODE
R::setup('mysql:host=localhost;dbname=demo','root','xxxxx');

R::freeze(true);
$data = R::find('publireportaje');
echo '<pre>';
print_r($data); 

#THE OUTPUT
Notice: Undefined index: id in /home/xxxx/public_html/sandbox/redbean/rb.php on line 4057
Only show the last row

我使用红豆 3.4

4

1 回答 1

3

在 RedBeanPHP 中,数据库中的每个表都需要有一个名为“id”的主键列 - 如果没有,则需要通过将主键列重新映射为“id”的数据库视图来访问表。

您从调用中得到的错误R::find()是告诉您该表没有名为“id”的列...

于 2013-11-03T17:02:37.927 回答