如何识别多行 Symony 代码中的 ORM - Propel 调用?

发布于 2024-11-04 16:28:28 字数 282 浏览 0 评论 0原文

我是 Propel 的新手。我有一个使用 Propel 的项目。我需要识别多行代码中的所有 Propel 调用。该项目是用 Symfony 制作的。

我可以通过什么规格找到所有 Propel 调用?

我的意思是 evrey Propel::getConnection() 只是一个可以在多个 Propel 调用中使用的连接?

或者我是否需要查找每个 new Criteria();[TheObiect]Peer::

I am new to Propel. And I have a project using Propel. And I need to identify all Propel calls in many lines of code. The project is made in Symfony.

By what specifications can I find all Propel calls ?

I mean evrey Propel::getConnection() is just a connections which can be used in multiple Propel calls ?

Or shall I need to look for every new Criteria(); and [TheObiect]Peer:: ?

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

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

发布评论

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

评论(1

逆光飞翔i 2024-11-11 16:28:28

这些连接(至少根据我的经验)完全在幕后处理。它们会根据需要自动创建,并在可用时重新使用。因此搜索 Propel::getConnection() 不会有帮助。您至少需要搜索上面列出的内容。即使原始模型对象也有对 Peers 的引用,就像在 ModelObject->save() 中一样。你的目标是什么?

The connections are (in my experience at least) totally handled behind the scenes. They are created automatically if needed and re-used if available. So searching for Propel::getConnection() will not help. You'll need to at least search for what you listed above. Even raw model objects have references to the Peers, like in ModelObject->save(). What is your goal?

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