How can i deploy a system that I can install in a PC and dont have to install a DBMS locally. I want the data repository of this system to sync with the main database online whenever the user want. The local system wont have internet access all the time. I could manage data locally with files or Access but I think a better solution must exist for this kind of problem.
What do you recommend me. I dont know if I explained my self well 😛
How can i deploy a system that I can install in a PC and
Share
QSQLITE. SQLite is a very popular database that runs locally in-process without any required configuration. QSQLITE is a plugin that provides a convenient QT-style API for it.
You will still have to write some kind of syncing/replication.