From: Steinar H. Gunderson Date: Sun, 13 Feb 2005 18:16:01 +0000 (+0000) Subject: Add people to roundparticipations as we go. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=62731f1052d2a3f21c2aac3511a0114bf6973c74 Add people to roundparticipations as we go. --- diff --git a/parse/parse-ddreurope-tournament.pl b/parse/parse-ddreurope-tournament.pl index d2d06ee..ad3fe07 100644 --- a/parse/parse-ddreurope-tournament.pl +++ b/parse/parse-ddreurope-tournament.pl @@ -92,6 +92,11 @@ while (<>) { if (/^ .*? class="link"> (.*?) <\/a> $/x) { $player = $1; printf "INSERT INTO players (nick) VALUES ('%s');\n", $player; + printf "INSERT INTO roundparticipation (tournament, round, parallel, player) VALUES (\n"; + print " (SELECT tournament FROM tournaments WHERE name='$name'),\n"; + print " $round, $group,\n"; + print " (SELECT player FROM players WHERE nick='$player')\n"; + print ");\n"; } # Player's results (score)