For this project I'm thinking on a embedded data base, my first thought was on SQLite, but it is more than 500k dll for such a tiny project, it seems ridiculous. So I searched and found
LMMD, 64K. It seems quite sexy for this project, but I didn't know it,
any knowledge out there?I have three environments:
- Orig. Main.
- Prev.
- Dest.
Starting from Orig I want the find what object has changed in Prev and Dest, but also it may be some differences, so I have stablished the next statement:
- Orig: 1 = 0001b
- Prev: 2 = 0010b
- Dest: 4 = 0100b
In such a way that, for example, 1 + 2 = 3 = 0011b means that this object is in Orig and Prev environments. And I have to dump all this data to the db I use. This information is usefull to know what object is in which db. Which one has changed, which one has been deleted, which is new, so on.