尝试使用 MAX():“致命错误:未定义的类常量”

发布于 2024-10-10 23:25:18 字数 312 浏览 2 评论 0原文

$c = new Criteria();
$c->addSelectColumn('MAX('.Moto::matricula.')');

但我收到这个错误:

致命错误:未定义的类常量 /opt/lampp/htdocs/ 中的“矩阵” prueba/lib/model/MotoPeer.php 上线 25.

有什么想法吗?

我正在使用 symfony 1.4 和 propel 1.4。

问候

哈维

$c = new Criteria();
$c->addSelectColumn('MAX('.Moto::matricula.')');

But i get this error:

Fatal error: Undefined class constant
'matricula' in /opt/lampp/htdocs/
prueba/lib/model/MotoPeer.php on line
25.

Any idea?

I'm using symfony 1.4 and propel 1.4.

Regards

Javi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦与时光遇 2024-10-17 23:25:18

这意味着“Moto”类中没有变量“matricula”。这似乎与(my)sql没有任何关系,但与您正在使用的(php?)类有更多关系。

检查 Moto 类的源代码,看看常量名称是否有拼写错误?

It means that the class "Moto" doesn't have a variable "matricula" in it. This does not seem to have anything to do with (my)sql, but more with the (php?) class you are using.

Check out the source of that Moto class, and look if you have made a typo in the constant name?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文