Help for this page

Select Code to Download


  1. or download this
    my $sqlstmt = "select to_date('$tdate','mm/dd/yyyy') from dual";
    my $sth = $dbh->prepare($sqlstmt);
    ...
    my $tmp;
    $sth->bind_columns(undef, \$tmp);
    while($sth->fetch()) {$tdate = $tmp;}
    
  2. or download this
    $sth->bind_col(1, \$tmp);