Help for this page

Select Code to Download


  1. or download this
    $Array[0] = undef;
    $sth = $dbh->prepare("INSERT into MYTABLE (mydate) VALUES(?)");
    $sth->execute($Array[0]); #GIVES ODBC Error
    
  2. or download this
    $sth->execute(undef);  #Works!