Reputation: 39871
I want to create a GUI with C++ (QT4). The GUI should work on Windows and should be able to
So my questions are:
What kind of database can help me to do this, what I should learn connected with database to be able to perform this task?
Should I encode the database by my GUI, or databases have such command to save them on disk already encoded?
Thanks!
Upvotes: 1
Views: 290
Reputation: 1416
You could try looking into SQLite. The library can be used with C++. It will not need an external DBMS. SQLite is embedded into your application, and you can access you database through it. Also, the database files it produces can be encoded, so it will be accessible to your application only.
Upvotes: 3
Reputation: 3218
first, you should decide what are the scenario your system going to be applied. then only proceed to source for database provider (MySQL, Postgres, etc).
you can't really jump to UI implementation straight away because all of the database mentioned above can do what you need.
Upvotes: 0