gpt4 book ai didi

php - SQLSTATE[42S02] : Base table or view not found: 1146 Table

转载 作者:行者123 更新时间:2023-11-29 02:20:09 24 4
gpt4 key购买 nike

我正在创建 Laravel 的注册部分。我的表名是“owner”,在代码中我写了“owner”作为表名,但是当我尝试提交注册表时,我仍然收到错误页面作为,

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'engage.owners' doesn't exist (SQL: insert into owners.....

因为在我的engage 数据库中没有owners 表,我不知道为什么它试图插入到owners 表而不是所有者 表。

最佳答案

根据文档:http://laravel.com/docs/5.1/eloquent

你可以这样改:

命名空间应用;

使用 Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'my_flights';
}

请记住,我从未使用过 Laravel。

关于php - SQLSTATE[42S02] : Base table or view not found: 1146 Table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33367409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com