XML to MS-Access 2007 using ASP.Net (Bulk Insert, Bulk Copy) -


i download xml file comprising thousands of records. want xml file convert ms-access 2007 database using asp.net (vb) , run further queries on it. worth mentioning conversion should done in bulk because heavy file , take longer insert 1 one record. tired of googling code fulfill requirements. new asp.net. xml file structure under:

  <?xml version="1.0" encoding="utf-8" ?>   <root>   <product item="8101">   <model>fy316a</model>    <ean>5055071647109</ean>    <name>enchanted twilight flower fairy 'amethyst'</name>    <description> descriptio </description>   <dimension>  <![cdata[ height 31 - 32cm width 16 - 18.5cm depth 12 - 13.5cm </dimension>   <price>16.63</price>    <delivery>i</delivery>    <options>  <![cdata[ b - hand on dress|a - flower in hand|any  ]]>   </options>   </product>  </root> 

please write complete piece of code me job.

access 2007 directly import xml. can create xsd particular data, import create table definitions. xml should cleanly import there.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -