I want to implement a database solution to store animal interest forms on. Their current system of sifting through papers is janky to say the least.
Does anybody know of any cheap, preferably free or open-source, database providers I could work with? I've looked at AWS etc but they're all incredibly pricey for a non-profit organisation.
EDIT: Extra points if I can connect the database back-end to an online web form.
FURTHER EDIT: Have decided to build a local MySQL database, with regularly scheduled backups. Thinking that the online form could return JSON data that I will allow to be parsed into the database. Any thoughts further to this?
For a small amount of data, you can run a local SQL database or, in many languages, save time and headache by storing the data in a native data structure in a flat file locally.
MySQL and PostgreSQL are good, powerful SQL engines to learn for later applicability in the real world. SQLite is easy and honestly good enough for most small projects.
In Perl, I used to use the DBD::CSV module. Similar such things probably exist in any language you're thinking of using.
Searching Google for "SQL CSV" turns up TextQL, which looks like it might be a very flexible hybrid of my responses. Another option is to use the Google Sheets API