Reputation: 1314
I have a database of 1000+ products, descriptions, client info ect that are built on a .net software. I want to build/design a new ecommerce store in Wordpress (database: MySQL). Is there anyway to integrate the old database into a new Wordpress site?
This would save me the work of having to create 1000's of new products in wordpress...
Thanks
Upvotes: 0
Views: 256
Reputation: 2960
You may need to consider an ETL tool for data migration like MS SSIS.
Upvotes: 0
Reputation: 22586
You can probably write your storefront in such a way that it accesses the database, as long as you aren't getting rid of the database. People have been using MySQL as the backend for websites for many years.
From the sounds of it, you may want to get a consultant on board to help with the design.
Upvotes: 0
Reputation: 82078
There isn't a way to get WordPress to use MSSQL or Access (assuming that is what you mean by .NET) without a lot of work (it is definitely possible, but you may need to re-write the database class), but there is a way to get your data across. It's called the MySQL migration toolkit. It is supposed to be very easy to use and it is free.
Upvotes: 1