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