PDO 和 sqlsrv 中的问题

发布于 2024-09-10 20:24:41 字数 237 浏览 4 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

摇划花蜜的午后 2024-09-17 20:24:41

永远不要使用一种技术进行开发并期望在产品中使用不同的技术。

它会失败,因为 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文