in reply to Sorting hash values according to order of an array
"INSERT INTO $q{'-table'} (".join(',', @columns).") VALUES ($ph)"You can make a list of columns based on your hash. It's unfortunate that you've prefixed them with a dash, though.
my @columns = map { substr($_,1) } keys %{$q{'-values'}};That's the basics of it.
my @columns = keys %{$q{'-values'}};I didn't notice that you hadn't prefixed your columns with dashes, unlike your properties.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Sorting hash values according to order of an array
by mt2k (Hermit) on Nov 24, 2002 at 02:13 UTC | |
by tadman (Prior) on Nov 24, 2002 at 02:51 UTC |