Aleph
Aleph

Reputation: 1373

How to create my own glossary/dictionary

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

Answers (1)

RigidBody
RigidBody

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

Related Questions