Mini DB App
This database app was made for a friend and gave me a great reason to take on a java project. This is my first GUI-based java6 project, my other java projects were done all the way back with java 1.1.
I got some great help from chaos95 on irc.foonetic.net with the database queries and using databases in general.
Download available, including source, here: MiniApp.tar.gz (updated Feb 28th, 2010) 
Info:
This uses a sqlite database called minis.db and stores images in a ./images/ folder. The tags are searchable but nothing else is. It also shows some basic stats at the bottom, getting the number by tag name.
To Do:
- Tags are stores as “,foo,bar,” instead of “foo,bar” as is natural. This can be fixed with a more complex database system, but I’m not sure if it’s necessary for such a small project.
- Should show tag count when searching along with results, easy fix
- Allow user to have multiple databases, opening by file name. Extra work, not necessary for current scope.