PDO - 使用表前缀
我喜欢给我的表添加前缀,以防我需要将应用程序安装到只有一个数据库的主机上。我想知道是否有一种使用 PDO 类处理表前缀的简单方法?
目前,我必须覆盖我自己的数据库中的每个方法,将 %p 替换为前缀,然后调用 super 方法。这是可行的,但它并不漂亮!
I like to prefix my tables in case I need to install the application to a host with only one database. I was wondering if there is a simple way of working with table prefixes using the PDO class?
At the moment, I am having to overwrite each method in my own database wrapped, replace %p with the prefix, and call the super method. It's works, but it isn't pretty!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展 PDO 类可能是最好的选择。
Extending the PDO class is probably the best option.