Zend_Db 和 Zend_Auth 中的数据库特定函数
我正在使用 Zend_Db 连接到 postgres 数据库。我想使用数据库中的一些函数,一个是内置函数(digest() 函数),其他函数是非核心函数。
有没有办法允许 Zend_Db 和/或 Zend_Auth 使用它们?目前,它似乎删除了摘要功能,因此我无法使用盐存储密码(例如),其他功能(例如使用内置 UUID 功能)也不起作用。
I am using Zend_Db to connect to a postgres database. I want to use some functions in the database, one is built in (the digest() function) and others are one's that are non-core.
Is there a way to allow Zend_Db and/or Zend_Auth to use them? Current it appears to strip out the digest function so I can't store passwords with a salt (for example), other functions like using a built in UUID function don't work either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
密码和摘要函数的问题可以通过在数据库中定义自己的函数来解决,例如:
对于授权:
Zend_Db_Expr 也可能有帮助
Problem with passwords and digest function you can resolve by defining your own function in database, for example:
and for authorization:
Zend_Db_Expr also may be helpful