in reply to ADD $tjeneste_type to $row
$row->{tjeneste_type} = $tjeneste_type;
Also you might be able to simplify things by not using an array reference at all. DBI has a nifty little method fetchrow_hashref which as the name implies automatically gives you a hash reference with the field names as keys.
Of course all this is assuming that's what $row is. :)
|
|---|