- or download this
my $statement1 = "SELECT files FROM catalog WHERE words LIKE %".$word.
+"%";
$sth1 = $dbh -> prepare($statement1);
$sth1 -> execute();
- or download this
my $find_files = $dbh->prepare(q{
SELECT files
...
...
}
}
- or download this
$sth2 = $dbh ->prepare("select filename, type from library
where filename = $file_index
and".$rule_append);
- or download this
my %search_library = (
email => $dbh->prepare(q{
...
AND (filetype = 'email' OR filetype = 'article')
}),
);
- or download this
for my $w (@words) {
$find_files->execute("%$w%");
...
}
}
}