mysql 表中的学说模型架构

发布于 2024-10-31 12:21:57 字数 126 浏览 2 评论 0原文

我想自动将所有数据库表创建为学说表模式。学说版本是 2。任何人都可以帮助我如何通过 php 本身而不是使用命令行工具来获取它吗?我正在使用 codeigniter 框架(2.0),因此基于该框架的解决方案将非常感激。

问候

i want to create all my database tables as doctrine table schema automatically. doctrine version is 2. Can anyone please help me how to get this by php itself instead of using command line tools plz? I am using codeigniter framework(2.0), so solution based on that will be much appreciated.

Regards

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

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

发布评论

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

评论(1

嗼ふ静 2024-11-07 12:21:57

您需要实例化 SchemaTool。此代码应该适合您:

$em = $this->doctrine->em;

$tool = new \Doctrine\ORM\Tools\SchemaTool($em);
$tool->dropDatabase();
$classes = array(
  $em->getClassMetadata('user')
);
$tool->createSchema($classes);

http://www.主义-project.org/docs/orm/2.0/en/reference/tools.html

You need to instantiate SchemaTool. This code should work for you:

$em = $this->doctrine->em;

$tool = new \Doctrine\ORM\Tools\SchemaTool($em);
$tool->dropDatabase();
$classes = array(
  $em->getClassMetadata('user')
);
$tool->createSchema($classes);

http://www.doctrine-project.org/docs/orm/2.0/en/reference/tools.html

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