Even though it's a few years away, I've been working with a few old classmates to get the ball rolling for our 20th reunion. I've been trying to track down some people and get updated contact information for them. This has given me a reason to try
MySQL.
I installed MySQL-server on a machine running FreeBSD. I then started it with this command:
/usr/local ; /usr/local/bin/mysql_safe &
On the server, some basic configurations need to be made as far as permissions and access and the table(s) need to be set up with the fields as well. Once I did that I installed the client on my desktop. So, then, I needed to connect to it and start giving it information. The command to connect is:
mysql -h [server] [username] -p
The "-p" will give a prompt for the password.
Once connected, you can enter all data from a command line using commands that are easily found in forums and the MySQL website. I understand there are GUI front-ends but I haven't tried any yet. For now, I find it best to stick with the command-line.