Laravel 查询 Mysql 表结构:Undefined property: stdClass::$column_name when generating a model

  • 问题描述

       当使用 getRealColumn 时,报处出该错误 Undefined property: stdClass::$column_name when generating a model。

       参考 https://github.com/laravel/framework/issues/20190

  • 解决方法:

       Laravel 的 MySqlProcessor 假定从 MySQL 中获得的 column_name 是小写的。

       当执行 MySqlGrammar 的 compileColumnListing() 或者 compileColumnExisting() 方法时,实际执行了下面 SQL 语句

select * from information_schema.tables where table_schema = ? and table_name = ?

       返回结果包含了大写的 COLUMN_NAME 字段,造成了 Laravel 无法找到 column_name 而报错。因此修改该 SQL 句获取小写字段即可:

select column_name as `column_name` from information_schema.tables where table_schema = ? and table_name = ?

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值