Help for this page

Select Code to Download


  1. or download this
    my $sql = qq{SELECT * FROM $table WHERE (MATCH(Author) AGAINST('+herma
    +n +melville' IN BOOLEAN MODE)) order by Title};
    
  2. 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;
    
  3. 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;