I want to create an Access database(‘mdb’) from an xml file.
Creating empty access database is easy(I am able to do this), I am having problem in figuring out how can we create a table and populate it with data from the xml file on the fly through code.
I am using C#.
You can read the XML file into a DataSet, then populate it into your database.