Making a simple searchable directory of people and their skills in a day - Which technologies?

Posted by gav on Stack Overflow See other posts from Stack Overflow or by gav
Published on 2010-03-12T14:51:36Z Indexed on 2010/03/12 15:27 UTC
Read the original article Hit count: 258

Filed under:
|
|

Hi All,

I am working with a small theatre company. Currently they have a list of people on paper with notes about their skills next to each one. I want to create a database / directory for them so that they can add, delete, update and search for people. It is a very simple and common scenario I know but the issue here is that I only have a day to build a working solution.

The search has to be very simple

At first I was thinking LAMP but I'd rather not have to create it all from scratch and host it myself. That lead me to Google Spreadsheet as a database, this has the advantage that they already use google docs for everything and if my front end goes tits up they can still get to the data.

Presuming none of you can think of some existing software which does exactly what I want the next step is to make a front end for the database. You can create forms for Google Spreadsheets but they only let you add new entries, I can make a Google Gadget but that will only let me implement the search as the Google Visualisation API provides read only access.

It's at this point I'm stuck, should I just create a Java Servlet front end for the Google Spreadsheet and use the Java API to add, search and update?

I know this is a broad question but I'm just asking 'What would you do?' to implement this system with a day's development time?

Gav

© Stack Overflow or respective owner

Related posts about google-spreadsheet

Related posts about java