Help for this page

Select Code to Download


  1. or download this
    my $foo = ''.$key_value;
    my $foo = "$key_value";
    my $foo = eval($dbh->quote($key_value));   # Desperation
    
  2. or download this
    $sth->execute(1,"A","B","C");
  3. or download this
    my $sth = $dbh->prepare("
                   INSERT INTO web_sessions_aux 
    ...
            ;
    
    $sth->finish();
    
  4. or download this
    if (!ph->type) {
             ph->type = SvNIOK(ph->value) ? SQL_INTEGER : SQL_VARCHAR;
    }