尝试使用 MAX():“致命错误:未定义的类常量”
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着“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?