<div dir="ltr"><div>Hi WK,<br><br></div>Thanks for your reply. I am trying to get it to work. <br><div><div><div class="gmail_extra"><div class="gmail_quote"><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
my $Accomps = $dbh->selectall_hashref( $q, 'ID' );<br></blockquote><div><br></div><div>After figuring out how to accommodate my placeholder in selectall_hashref I did this:<br><br> my $Accomps = $dbh->selectall_hashref( $q, 'ID', \%attr, $Sid );<br><br></div><div>Then as you suggested I do:<br><br> # get parameter for accomp type keys<br>      foreach my $key ( keys %$Accomps ) {<br>      print "Checking: " . $key . " for value.\n";<br>      if ( param( $key ) ) {<br>          $input_hash->{ $key } = $Accomps->{ $key };<br>          print $key $input_hash->{ $key } . "\n";<br>      }<br>      }<br></div><div><br></div><div>(just printing temporarily to see if it trapped the values) <br><br></div><div>However, I get this error:<br></div><div><br> Route exception: Can't use string ("1") as a symbol ref while "strict refs" in use at /home/richard/Dancer2/MyApp/bin/../lib/MyApp.pm line 557.<br></div><div><br></div><div>Any idea what I am doing wrong?<br><br></div><div> <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
# Then:<br>
my $input_hash = {<br>
       Tech => param('tech'),<br>
<span class="">       Type => param('type'),<br>
</span>};<br>
<br>
foreach my $key ( keys %$Accomps ) {<br>
  if ( param( $key ) ) {<br>
    $input_hash->{ $key } = $Accomps->{ $key };<br>
  }<br>
}<br>
<br>
<br>
Wbr,<br>
<span class=""><font color="#888888">--<br>
Kõike hääd,<br>
<br>
Gunnar<br>
_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" rel="noreferrer" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
</font></span></blockquote></div><br></div></div></div></div>