views:

19

answers:

0

I have a project which is composed of a board with 2 CPUs that have access to 2 different memories (FLASH and DDR), and the 2 CPUs can communicate by ethernet among themselves.

one CPU is running XML hierarchical DB files handled by "tail-f" and the other is running SQLite DB and also a CLI which is exposed to the user through which he can change things in the SQLite DB

I have a requirement that the tail-f DB will be a slave of the SQLite DB, meaning the SQLite DB will have whats in the tail-f DB, and when i update the SQLite DB the tail-f DB will be informed about it.

problem is, the tail-f DB schema is very big so i want to make some kind of script that will transform the XML files and build an appropriate CLI commands and DB tables.

If anyone has some kind of experience with those 2 DB technologies, please tell me how much possible this immegration from hierarchal DB to relational DB is.