将asp.net中的项目迁移到drupal
我正在尝试重建一个用asp.net设计的网站。但是,作为一个信息丰富的网站,它有很多我不想手动输入数据库的内容。
ne1可以帮助我使用任何drupal模块将sql server中的asp.net数据以drupal架构的形式迁移到mysql db吗?
例如,asp.net 中的一个页面正在显示来自表单的数据。我可以以 cck 的形式迁移它并获取页面数据作为节点表吗?
I am tryin to rebuild a website designed in asp.net.But,being an informative site it has a lot of content in it which i dnt want to input to the database manually.
can ne1 help me out with any drupal module to migrate the asp.net data in sql server to mysql db in form of drupal architecture??
say for example a page in asp.net is displaying data from a form.Can i migrate it in form of cck and get the page data as nodes table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有可用解决方案的比较表很有用,但我强烈推荐使用 Migrate 模块。它应该可以与 MS SQL 源数据一起使用(我只将其与 MySQL 和 Postgres 源数据库一起使用),并且在将源数据映射到 Drupal 模式方面非常灵活。对于 Drupal 6,它支持大多数 CCK 字段类型(包括图像和文件),对于 Drupal 7,它很好地支持新的 Field API。
该模块采用的方法允许您进行持续迁移,这样,如果您的源 ASP 站点仍在添加或更改内容,它将跟踪已迁移的内容,甚至允许更新以前迁移的内容。
The comparison table of all available solutions is useful, but I would strongly recommend the Migrate module for this. It should work with MS SQL source data (I've only used it with MySQL and Postgres source databases), and is quite flexible in regards to mapping the source data to the Drupal schema. For Drupal 6, it supports most CCK field types (including images and files), and for Drupal 7 it supports the new Field API quite nicely.
The approach that the module takes, allows you to do continuous migrations such that if your source ASP site is still adding or changing content, it will keep track of what has been migrated, and even allows updating of previously migrated content.
此页面有一个主要模块的比较表,可以帮助您将数据导入Drupal。但请记住,在实际导入之前您需要做一些工作,因为 Drupal 没有神奇的方法将数据库的列映射到 Drupal 列。
This page have a comparison table of the main modules that may help you importing the data into Drupal. But keep in mind that you'll have some work to do before actually importing, since there's no magical way for Drupal to map the columns of your database to the Drupal columns.