Eternius: [MySQL] Prüfung Volltext-Syntax.

Beitrag lesen

Hallo,

$sql = "select * from tabelle where match(spalte) against (".$dbh->quote('$query')." in boolean mode)";

oder auch:

  
my $sth =$dbh->prepare("select * from tabelle where match(spalte) against (?) in boolean mode)");  
$sth->execute($query);  

welches das automatisch erledigt.

gruss

--
no strict;
no warnings;
Ich weiss es nicht, aber ich bin mir nicht sicher.
Kluge Leute sind auch nur Menschen.