give an error if pvpgn report insertion fails
[perl/schtarr.git] / pvpgnreport
index b98fce6019fa93a13412eb98ce8dd267626bba34..049ffb2c800d14b3f23a6e272b2ef9daa0ca808f 100755 (executable)
@@ -106,7 +106,9 @@ $Db->insert("game", {
        start => time2str('%Y-%m-%d %X', $start),
        duration => sprintf('%d seconds', $end - $start),
 })->rows or die "Game insert failed: ".$Db->error."\n";
-my $gameid = $Db->last_insert_id((undef) x 4, {sequence => "game_id_seq"});
+my $gameid = $Db->last_insert_id((undef) x 4, {sequence => "game_id_seq"})
+       or die "Couldn't find our game insertion: ".$Db->error."\n";
+print "Game inserted as # $gameid\n";
 
 $Db->insert("play", {
        game => $gameid,