sagar_p_parakh
Member
- Joined
- Nov 7, 2008
- Messages
- 20
- Programming Experience
- Beginner
I want to migrate the data from xml to access database 
I have used following code to retrieve information from xml file
	
	
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
This code display the data from xml file to listbox. But I want to write data from xml file to access database . Hence Please help me to migrate my xml data to access database. thanks in advance
	
		
			
		
		
	
				
			I have used following code to retrieve information from xml file
			
				VB.NET:
			
		
		
		 Dim reader As New XmlTextReader("sample.xml")
        While reader.Read()
        listbox1.items.add(reader.Value)
        End WhileThis code display the data from xml file to listbox. But I want to write data from xml file to access database . Hence Please help me to migrate my xml data to access database. thanks in advance
 
	 
 
		 
 
		