in reply to Re: Hash arrays
in thread Hash arrays
$stmnt = :"select acct_nbr,cycle_cd,cycle_end_dt from usage_rcvd" ; $sth = dbh->prepare($stmt); while ($sth->fetch()) { bind_col(1,$acct_nbr); bind_col(2,$cyc_cd); bind_col(3,$cyc_end); here I need to store them in hash array: key is $acct_nbr values are $cyc_cd and $cyc_end }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Hash arrays
by Anonymous Monk on Dec 26, 2012 at 10:00 UTC | |
|
Re^3: Hash arrays
by Anonymous Monk on Dec 26, 2012 at 09:59 UTC | |
by rkrish (Acolyte) on Dec 26, 2012 at 10:09 UTC | |
by AnomalousMonk (Archbishop) on Dec 26, 2012 at 12:22 UTC |