如何在 Doctrine 中执行日期操作,而无需在 MySql 或其他数据库后端编写本机查询?

发布于 2024-12-08 05:08:03 字数 341 浏览 0 评论 0 原文

我正在浏览 Doctrine 的文档。

我想将我的 Code Igniter 代码库的模型部分迁移到 Doctrine ORM

我编写了许多复杂的查询,包括日期操作,例如使用DATE_ADD等添加两个日期、添加迄今为止的天数等。Doctrine

的基本用法是它为您提供抽象,就像您一样将数据库后端从 MySQL 更改为 MSSQL 或其他,您的代码库受到的影响应该最小。

现在我想问 Doctrine 是否提供了一些日期操作的功能,或者我们必须编写 MySQL 原生查询?

非常感谢。

I was going through the documentation of Doctrine.

I want to migrate my Code Igniter codebase's model portion to Doctrine ORM.

I have written many complex queries including date operations e.g. add two dates, add days to date etc using DATE_ADD etc.

Basic usage of Doctrine is it provides you abstraction as in if you change your DB backend from MySQL to MSSQL or other, your code base should be least effected.

Now I want to ask does Doctrine offer some function for date manipulations or we will have to write MySQL native queries?

Many Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅笑轻吟梦一曲 2024-12-15 05:08:03

在所有情况下,我都建议使用 php 进行日期操作。但是,如果您想要 DQL(教义查询语言)中的一些糖分,您可以为其添加其他功能,有很多扩展 此处 按照文档了解如何挂钩它们这里
当然,学说不会让您使用具有水合功能的本机查询,因此如果您想拥有数据库的这种功能,请使用 PDO。此外,如果您使用doctrine2,还有行为扩展

In all cases I would recommend to use php for date operations. But if you want some sugar in DQL (doctrine query language) you can hook additional functions to it, there is a bunch of extensions here follow the documentation on how to hook them here
Of course doctrine will not let you use native queries with hydration, so if you want to have this power of your database use PDO. Also if you use doctrine2 there are behavioral extensions

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