Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare($sql);
    $sth->execute();
    my $lob;
    my $chrs_or_bytes_read = $sth->odbc_lob_read(0, \$lob, 65535, { TreatA
    +sLOB=>1 });
    
  2. or download this
    $sth = $dbh->prepare($sql);
    $sth->bind_col(1, \$lob);
    $sth->execute();
    
  3. or download this
    cannot bind to non-existent field 1