Help for this page

Select Code to Download


  1. or download this
    $dbh->do(qq{INSERT INTO files 
               (file, dev, ino, mode, nlink, uid, gid, rdev, size, 
    ...
                undef,
                $filename, $dev, $ino, (sprintf "%lo", $mode), $nlink, $ui
    +d, $gid, $rdev, $size,
                $atime, $mtime, $ctime, $digest, undef, undef, undef);
    
  2. or download this
        $sth = $dbh->prepare('SELECT * FROM modules WHERE module LIKE ? AN
    +D code LIKE ?');
        $rv = $sth->execute('%v%', '%x%');
    
  3. or download this
        $sth = $dbh->prepare('SELECT * FROM modules WHERE module LIKE :m A
    +ND code LIKE :c');
        $sth->bind_param(':m', "%v%");
        $sth->bind_param(':c', "%x%");
        $rv = $sth->execute;