John M. Dlugosz has asked for the wisdom of the Perl Monks concerning the following question:
$Data->Sql ("SELECT * FROM ConfigData"); while ($Data->FetchRow ()) { my %x= $Data->DataHash(); $ConfigData{$x{ID}}{$x{DataName}}= $x{DataValue}; } $Data->Sql ("SELECT * FROM DicomDestinations"); while ($Data->FetchRow ()) { my %x= $Data->DataHash(); $DestinationData{$x{ID}}{$x{DataName}}= $x{DataValue}; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: reuse worth it for small items?
by Hue-Bond (Priest) on May 05, 2006 at 21:21 UTC | |
|
Re: reuse worth it for small items?
by Herkum (Parson) on May 06, 2006 at 03:12 UTC | |
by John M. Dlugosz (Monsignor) on May 08, 2006 at 15:25 UTC | |
|
Re: reuse worth it for small items?
by Zaxo (Archbishop) on May 05, 2006 at 22:08 UTC | |
|
Re: reuse worth it for small items?
by hesco (Deacon) on May 06, 2006 at 08:39 UTC | |
|
Re: reuse worth it for small items?
by jonadab (Parson) on May 05, 2006 at 21:29 UTC | |
by revdiablo (Prior) on May 05, 2006 at 22:10 UTC | |
|
Re: reuse worth it for small items?
by tinita (Parson) on May 07, 2006 at 01:08 UTC |