Choosing appropriate database
-
I have a database that is located on a pc and different qt programs which run on the different pc should use this database. I wanted to use sqlite but I figured out sqlite is not appropriate for this purpose. I'm wondering which database is appropriate to do this project? I would be grateful if you could guide me with a similar project or a solution.
-
Hi
Addining to @mrdebug , there are many to choose fromPostgreSQL is very mature and solid RDBMS and it seems also be good for beginners so what is not to like. :)
-
PostgreSQL is definitely good. As is Mysql and mariadb. Mysql has always been my favorite at least for larger databases that things like SQL Server would have handled.
For smaller scale stuff I usually use sqlite or postgres because of the easy of installing and using them.