PHP 中的 ORM 和 Active Record 模式?

ORM and Active Record Pattern in PHP?(PHP 中的 ORM 和 Active Record 模式?)
本文介绍了PHP 中的 ORM 和 Active Record 模式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

现在有两件事似乎很流行,我想知道使用这样的东西的利弊是什么:http://codeigniter.com/user_guide/database/active_record.html ?

There are two things that seem to be popular nowadays and I was wondering what are the pros and cons of using something like this: http://codeigniter.com/user_guide/database/active_record.html ?

另一件事是 ORM(例如 Doctrine).使用这些有什么好处?

Another thing is ORM (Doctrine for instance). What are the benefits of using these?

推荐答案

ActiveRecord 是 ORM 中常见的一种模式.Doctrine 是一个使用 ActiveRecord 风格的 ORM.

ActiveRecord is a pattern common in ORMs. Doctrine is an ORM which uses an ActiveRecord'ish style.

使用 Doctrine 等工具的一些好处:

Some benefits of using tools like Doctrine:

  • 数据库独立性:代码应该很容易移植到不同的数据库.例如,我经常使用 SQLite 进行测试,并在生产中使用 MySQL 或 Postgre,而无需更改代码.
  • 它们减少了您必须编写的代码量:应用程序代码的很大一部分处理与数据库的通信.ORM 负责处理大部分工作,因此您可以专注于编写实际应用.

当然,它们并非没有缺点:

Of course, they don't come without disadvantages:

  • Doctrine 很重,所以它比使用直接 SQL 慢
  • ORM 可能很复杂,增加了您必须学习的内容的负担,而且有时对于没有经验的程序员来说可能难以理解

这篇关于PHP 中的 ORM 和 Active Record 模式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Subtract time in PHP(在 PHP 中减去时间)
Limit execution time of an function or command PHP(限制函数或命令 PHP 的执行时间)
How to sum N number of time (HH:MM Format)?(如何求和 N 次(HH:MM 格式)?)
How to get current time in milliseconds in PHP?(如何在 PHP 中以毫秒为单位获取当前时间?)
How to check if time is between two times in PHP(如何检查时间是否在 PHP 中的两次之间)
Convert number of minutes into hours amp; minutes using PHP(将分钟数转换为小时数分钟使用 PHP)