- or download this
my $sql = qq{SELECT * FROM $table WHERE (MATCH(Author) AGAINST('+herma
+n +melville' IN BOOLEAN MODE)) order by Title};
- or download this
my $sql = qq{SELECT * FROM $table WHERE (MATCH(Author) AGAINST('? ?' I
+N BOOLEAN MODE)) order by Title};
$ding -> execute("+herman", "+melville") or die DBI->errstr;
- or download this
my $sql = qq{SELECT * FROM $table WHERE (MATCH(Author) AGAINST(?)) ord
+er by Title};
$ding -> execute("\'+herman +melville\' IN BOOLEAN MODE") or die D
+BI->errstr;