Ticket #6188: multiple_backends.patch
| File multiple_backends.patch, 800 bytes (added by , 17 years ago) |
|---|
-
myth.find_orphans.pl
137 137 # look in recorded table, make sure we can find every file .. 138 138 # 139 139 140 my $q = "SELECT title, subtitle, description, starttime, endtime, chanid, basename FROM recorded WHERE hostname=(?)ORDER BY starttime";140 my $q = "SELECT title, subtitle, description, starttime, endtime, chanid, basename FROM recorded ORDER BY starttime"; 141 141 $sth = $dbh->prepare($q); 142 $sth->execute( $opt_host) || die "Could not execute ($q): $!\n";142 $sth->execute() || die "Could not execute ($q): $!\n"; 143 143 144 144 while (my @row=$sth->fetchrow_array) { 145 145 ($title, $subtitle, $description ,$starttime, $endtime, $channel, $basename) = @row;
