Reputation: 1373
Does someone know a software which would allow me to create a glossary / dictionary of technical words (philosophical concepts in my case)?
Upvotes: 0
Views: 360
Reputation: 664
Assuming you are attempting this in C++, you can connect to MySQL database with MySQL Connector/C++. See MySQL Connector C++
If using a database isn't in the cards, you can do it with something as simple as a hashMap data structure and a text file in most Object Oriented Languages and even plain old C.
Upvotes: 0