in reply to Re^3: DBI and JSON fields
in thread DBI and JSON fields

With a hashref, this looks a lot different and is a lot more convoluted*:
"\$.${\$row->{name}}ence"
Uh, no. The ref/def thing is unnecessary, since the hash deref syntax alone will tell the parser where to break:
pdl> $row->{name} = 'sent' pdl> p "\$.${\$row->{name}}ence" $.sentence pdl> p "\$.$row->{name}ence" $.sentence