Help for this page

Select Code to Download


  1. or download this
    sub update_table{
        my $l_tablename = shift;
    ...
        my $l_fieldvalues = join ",", values %l_fields;
        $l_prepare = "INSERT $l_tablename (" . $l_fieldnames . ")\n VALUES
    + (" . $l_fieldvalues . ")";
    }
    
  2. or download this
    %x = (a =>1,
          b =>2,
          c =>3,
          d =>4);