--- db/prgsrc/updatedb.pl 2003/04/14 20:06:59 1.36 +++ db/prgsrc/updatedb.pl 2004/01/19 19:42:04 1.40 @@ -28,7 +28,7 @@ The database, user and password are hard Dmitry Rubinstein -=head1 $Id: updatedb.pl,v 1.36 2003/04/14 20:06:59 roma7 Exp $ +=head1 $Id: updatedb.pl,v 1.40 2004/01/19 19:42:04 boris Exp $ =cut @@ -175,6 +175,10 @@ sub UpdateTournament { sub UpdateQuestion { my ($dbh, $QuestionId, $field, $value) = @_; + + if (($field eq 'Type') && ($value eq "'Д'")) { + $value = "'ЧД'"; + } $dbh->do("UPDATE Questions SET $field=$value WHERE QuestionId=$QuestionId") or die $dbh->errstr; @@ -372,10 +376,20 @@ MAIN: next; } + + if ($key =~ /Зач[её]т/) { + &UpdateQuestion($dbh, $QuestionId, "PassCriteria", $value); + next; + } + + + if ($key =~ /Комментари/) { &UpdateQuestion($dbh, $QuestionId, "Comments", $value); next; } + + my @Fields = grep { $key =~ /$_/ } keys %QuestionFields;