How to synchronize two databases in Qt?
-
Hi,
I'm using Qt4.7 for embedded development on an arm-linux based board. There is a local SQLite database, and a remote SQLServer database connected with board through network.The requirement is to synchronize everything executed on local SQLite DB to the remote SQLServer DB. The changes to SQLite are only "INSERTs" & "UPDATEs". Now I managed to repeat every SQLs of SQLite on the remote SQLServer. It works. But I think it's not a good solution. Is there any better and simpler solutions you guys know? Thanks.