Help for this page

Select Code to Download


  1. or download this
    INSERT member (last, first)
    VALUES(NULL, "chromatic");
    
  2. or download this
    $last = "NULL";
    $first = "chromatic";
    $query = 
    ...
        VALUES ($last, $first)
    };
    $rows = $dbh->do($query);
    
  3. or download this
    $last = $dbh->quote("NULL");
    $first = $dbh->quote("chromatic");
    
  4. or download this
    $query = 
    qq {
        INSERT member (last, first)
        VALUES (?, ?)
    };
    $rows = $dbh->do($query, undef, $last, $first);