Doctrine 和 MySQL
我对 Doctrine 和 MySQL 协同工作有几个问题。我不能100%理解它
,我在某处读到Doctrine可以与MySQL DB配合。这是怎么发生的?
如何加载我的数据库?
我如何通过学说操作我的 MySQL 表(我不考虑创建新表)?
Doctrine 是否自动将更改保存到数据库?如果不是,那么如何?
一些代码示例会很棒。我不太关心 PHP、Yaml 等语言。
I have few questions about Doctrine and MySQL working together. I don't understand it in 100%
I read somewhere that Doctrine can cooperate with MySQL DB. How it happens?
How do I load my DB?
How do I operate on my MySQL tables via doctrine (I'm no thinking about creating new ones)?
Does Doctrine save automatically changes to database?, if not then how to?
Some sample of code would be great. I don’t care too much about language can be in PHP, Yaml and others.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
a) 请详细说明您对“加载数据库”的要求。 Doctrine 是一个 ORM。
检查这里的文档:
http://www.doctrine-project.org/projects/orm/1.2 /docs/hu (查看说明书)
b) 使用 Doctrine 对表进行操作是使用 DQL,例如:
c)NO 您需要在此处保存对象
是帐户类
a) please specify more what you maen with "load DB". Doctrine is an ORM.
check here docs:
http://www.doctrine-project.org/projects/orm/1.2/docs/hu (check cookbook)
b) operations with tables with Doctrine are with DQL, example:
c)NO you need to save the object
here is account class