tags:

views:

52

answers:

1

Hi.. I have to parse xml file and after parsing I have to out related data in sqlite by using c#. I have parsed the xml file but not able to transfer those data into Sqlite data base. There are some problem while doing so. as I am not able to find System.Data.Sqlite even I have installed sqlite.

Thanks...

+1  A: 

If the problem is using the System.Data.Sqlite make sure that you have added sqlite#.dll to your references. In visual studio solution explorer, right click on references -> "add reference" browse and add the appropriate dll. After that you will be able to access the namespace.

m0s
Make sure you download the dll, it's not native to .NEThttp://sqlite.phxsoftware.com/
Doobi