tags:

views:

620

answers:

2

Hey guys I have a xml file that has a lot of info that I would like it to be in sqlite tables.

I am wondering if there's any tool, app to transform xml to sqlite.

By the way I am on OS X and I need the info for an iPhone app, so I can also take scripts or some source code to make the trasmformation.

Best Regards. Carlos Vargas

A: 

Use XSLT to transform the XML into insert statements.

Kevin Gale
+1  A: 

The SQLite Manager firefox plugin has an XML importer : http://code.google.com/p/sqlite-manager/

The XML import / Export is described here :

http://code.google.com/p/sqlite-manager/wiki/FAQ#XML_import_and_export

yonel
thx. I already solve this. I couldn't import the xml to the SQLite Manager instead of that I exported the xml as a cvs file and then imported the cvs file to the SQLite Manager... worked as a charm!
Carlos Vargas