Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a GUI which will enable me to query an XML file?

Tags:

database

xml

I have an XML file which I'd like to query (read/write) in the same way as I would a relational database. Performance is not a big issue, I just want to be able to load the file and start querying, preferably without having to define a schema. Does anyone know if such software exists?

like image 800
Johnny Avatar asked May 26 '10 09:05

Johnny


2 Answers

If you're familiar with C# and Linq, LinqPad is the way to go. You can use Linq to Sql and Linq to XML from there.

like image 124
Johannes Rudolph Avatar answered Sep 25 '22 20:09

Johannes Rudolph


You could check out eXist, an XML DB with XQuery support and an admin UI.

like image 45
Fabian Steeg Avatar answered Sep 24 '22 20:09

Fabian Steeg