views:

279

answers:

1

Is there a simple database program to let me collect, sort, tag, and reguritate trivia questions and answers?

If something already exists in Open Source, can you point me to that? I have assembly programming skills (cue jokes) but not so much in the Perl,LINQ,Delphi,VB, C#, Java arena.

A: 

Your task will not be very difficult. It would be a good way to learn C# (which I most recommend for this because of the ease of creating GUIs with it). You could just store the data in a text file or a serialized dictionary.

If your database is going to get big, you might consider using SQLite instead (which stores the database as a regular file). I don't know the state of C# bindings for SQLite, but there probably are some.

Good luck!

luqui