PDO 和 sqlsrv 中的问题
我使用 PDO 和 MySQL 数据库在本地系统上设置了一个站点。我使用 PDO 是因为当站点运行在实时服务器上时,我必须使用 SQL Server,并且我希望 PDO 能够解决我所有的查询冲突。
现在我已经在实时服务器上,每当应用程序使用“LIMIT”功能时,我都会收到错误。我意识到这是 MySQL 特定的函数,但 PDO 不应该处理冲突吗?如何修复该问题以便该网站可以在 MySQL 和 SQLSRV 上运行?
提前致谢。
I set up a site on my local system using PDO and a MySQL Database. I used PDO because when the site goes on the live server I have to user SQL Server and I was hoping PDO would take care of all my query conflicts.
Now that I'm up on the live server I get an error whenever the application uses the "LIMIT" function. I realize this is a MySQL specific function but shouldn't PDO take care of the conflict? How do I fix it so that site will work on MySQL and SQLSRV?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
永远不要使用一种技术进行开发并期望在产品中使用不同的技术。
它会失败,因为 SQL Server 中没有 LIMIT 的等效项,因此它无法转换。
如果您希望可以使用不同的后端,请使用 ANSII 标准 SQL,而不是特定于数据库的东西。如果您希望在产品中仅使用 SQL Server,请在 SQL Server 中进行开发(有免费版本)。
Never develop in one technology expecting to use a different technology in prod.
It fails because there is no SQL Server equivalent for LIMIT so it can't convert.
If you expect different backends to be possible, use ANSII standard SQL not database specific things. If you expect to use only SQL Server in prod, develop in SQL Server (there is a free version).