是否可以设置默认的 PDO 获取模式?
在检索数据之前,我总是必须输入:
$STH->setFetchMode(PDO::FETCH_OBJ);
为了使我的代码更具可读性,如果我可以在某处设置默认模式,那就太好了......
谢谢!
编辑。我最初希望可以将 PDO:FETCH_OBJ 添加到我运行时运行的 setAttribute 代码中我连接到数据库,但这似乎不起作用......
Before I retrieve data I always have to type:
$STH->setFetchMode(PDO::FETCH_OBJ);
In the interest of making my code more readable it would be great if I could set a default mode somewhere....
Thanks!
Edit. I was originally hoping I could add PDO:FETCH_OBJ to the setAttribute code I run when I connect to the DB, but that doesn't seem to work...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 docs 第四个可选参数可以保存一个键=> 驱动程序特定连接选项的值数组。
According to the docs a fourth, optional, parameter can hold a key=>value array of driver-specific connection options.