So, I'm in way over my head here and been trying this for 8 hours and have gotten zilch
Some context:
I'm looking into a issue for a friend where I need to convert some data from a homebrew database made in LibreOffice Base backed by some Firebird implementation (I'm a 100% new to this so I'm not sure how this is called/works) I need to convert this data to a xml which has to confirm to some xsd supplied by some third party company.
I've already generated code from the xsds (50K lines of code......) and should be able to map the data in C#, poop out an xml and they are good to go.
However, I'm having trouble accesing the data from the database file.... I have googled for I don't know how long, but I can't seem to find how to do this in .net.
I can unpack the .odb file and check the contents. It's only some xml's which define some queries, tables and forms. And 1 .fbk file. I'm actually not sure where the data is apart from the fbk file, but googling only tells me that's apparently a back-up file used for restoring, I'm guessing it's holding the actual data, but then?
There is not a lot of data in the file, it should be easy to load into memory so I don't expect any problems there. (they also use a new db for every project, so a few MB's tops every time the xml conversion is needed)
Does anyone know if this is even possible? And how do I achieve this?