My app calls a web service and receives a set of data in xml format. How can I populate a database then?
<NewDataSet xmlns="">
<Country>
<ID>0001</ID>
<Type>Country</Type>
<Code>IN</Code>
<Description>India</Description>
<IconName>IN</IconName>
<IconURL>http://.../IN.jpeg</IconURL>
</Country>
<Country>
<ID>0002</ID>
<Type>Country</Type>
<Code>FR</Code>
<Description>France</Description>
<IconName>FR</IconName>
<IconURL>http://.../FR.jpeg</IconURL>
</Country>
</>
Should I store retrieved data as xml file or somehow immediately push it to SQLite?