我想在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
我使用Redbean 3.4
答案 0 :(得分:3)
数据库中的每个表都需要有一个名为“id”的主键列 - 如果没有,那么您需要通过DB视图访问该表,该视图将主键列重新映射为“id” ”。
从调用R::find()
获得的错误告诉您该表没有名为“id”的列...