The values are being set in a Perl file. I cancan change the date but do you see anything wrong with the location? Thanks
# columns for the shift table.
$shiftID ="shift_id"; # primary key
$shiftProjID ="shift_proj_id"; # references the project table id
$shiftDate ="date"; # date for the shift
$shiftStart ="stime"; # start time for the shift
$shiftEnd ="etime"; # end time for the shift
$shiftLocation ="shift_location"; # location for the shift
$shiftNumPeople ="num_needed"; # number of people needed
# values are calulated, not stored in the table.
$shiftRegPeople ="num_registered"; # number of people needed
$shiftStillNeed ="num_still_need"; # number of people still needed
Main Topics
Browse All Topics





by: nemws1Posted on 2009-09-22 at 10:21:57ID: 25395180
I see two errors
#1) $shiftDate is set to "date" - that's a reserved word - don't use it as a field name.
#2) $shiftLocation is not set, you can see right after etime there is no field name given.