Zend Db 字段注释
有谁知道是否可以使用 Zend Db 从 mysql 获取单独的字段注释。我正在处理的是一个注册表单,它从数据库表中获取其所有字段。
目前,我使用字段名称来生成表单元素的标签,但是从 information_schema.columns 表中获取此数据会更好。
谢谢
does anyone know if you can get individual field comments from mysql using Zend Db. What im working on is a registration form that gets all its fields from the db table.
At the moment im using the field names to generate the labels for the form elements however it would be much better to get this data from the information_schema.columns table.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信你可以。这是从 Zend_Db_Table 类返回的元数据列表 - http://framework.zend.com/manual/en/zend.db.table.html#zend.db.table.metadata.caching.hardcoding。
I don't believe you can. Here's the list of metadata returned from the Zend_Db_Table class - http://framework.zend.com/manual/en/zend.db.table.html#zend.db.table.metadata.caching.hardcoding.