Help for this page

Select Code to Download


  1. or download this
    # is this a requirement or can both records be created at once?
    #my $session_rec = MyDbase::Session->insert({
    ...
            'timestamp'     => time,
    };
    #});
    
  2. or download this
    my $session_rec = MyDbase::Session->insert(
      my $session_rec = {
    ...
              'timestamp'     => time,
      };
    );
    
  3. or download this
    my $hr2 = {
               my $hr1 = { A => 1, B => 2 }
    };
    #Odd number of elements in anonymous hash at /home/funky/play line 46.