Help for this page

Select Code to Download


  1. or download this
      $query  = q{
         SELECT field1,
    ...
    
      $sth = dbh->prepare($query) || die "prepare failed: $DBI::errstr\n";
      $sth->execute($alias) || die "execute failed: $DBI::errstr\n";
    
  2. or download this
       $query = q{
          SELECT c.name,
    ...
          FROM collection_information c
          WHERE c.CLIENT = ?
       }