top of page
IuvoLatin
The Migration To SQL
October 25th, 2025
I was speaking with my dad the other day about what I was working on and he had suggested using SQL in some way for the translator app. I had not considered it but it is honestly a very good choose for this sort of program/api since the data will not need to be changed, only ever added to. My plan is to set up a server to run the database on, so that when clients use the application, they can indirectly access the contents of the database for lookup through the api. The translation and calculation of the words will be done in c++ and then all the words forms and meanings will be stored in the database. Doing it this way has required that I format the entry point data into csv so that I can easily be added to the database programmatically
bottom of page
