From 62731f1052d2a3f21c2aac3511a0114bf6973c74 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 13 Feb 2005 18:16:01 +0000 Subject: [PATCH] Add people to roundparticipations as we go. --- parse/parse-ddreurope-tournament.pl | 5 +++++ 1 file changed, 5 insertions(+) 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) -- 2.39.2