如何使用数据库查询在drupal中插入节点?
我想使用 mysql 查询手动将节点插入到 drupal 数据库中。我正在使用带有路径重定向、pathauto 和 pathauto 的 CCK 模块。查看。
哪些表和我必须向哪个字段提供数据,以便它像节点一样工作。
i want to insert the node manually to drupal database using mysql query. i am using CCK module with path redirect,pathauto & view.
Which tables & which field i will have to feed data so that it will work like a node.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我能想到的最好的办法是通过 Drupal 系统插入一个节点,然后查看哪些表得到了更新以及更新了什么。
Best thing I can think of is to insert a node through the Drupal system and see which tables get updated and what with.
最好遵循 Drupal API 的方式来执行此操作。
您可以查看此页面 http://www.unleashed-technologies.com/blog/2010/07/16/drupal-6-inserting-updating-nodes-programmatically 这将帮助您使用 PHP 插入节点。
It's best to follow the Drupal API way of doing this.
You can take a look at this page http://www.unleashed-technologies.com/blog/2010/07/16/drupal-6-inserting-updating-nodes-programmatically which will help you insert a node with PHP.