#================================================ my @row; $sth = $dbh->prepare( 'INSERT INTO games (gamename, gamedesc, gamecounter) VALUES (?, ?, ?)' ); open (FILE, "<../data/games/descriptions.txt") or die $!; while () { chomp; @row = split /\t/; push @row, 0; $sth->execute( @row ); } close (FILE); #================================================