Thread String zu hash wandeln + CSV (10 answers)
Opened by crypt0 at 2005-03-13 23:15

crypt0
 2005-03-14 14:38
#52619 #52619
User since
2005-01-25
23 Artikel
BenutzerIn
[default_avatar]
also hab das jetzt mal so:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
use DBI;

my $dbh = DBI->connect("DBI:CSV:f_dir=C:/;csv_sep_char=\t")
or die $DBI::errstr;
$dbh->{'csv_tables'}->{'info'} = { 'file' => 'info.csv'};
my $sth = $dbh->prepare("SELECT PartID FROM info");
$sth->execute();

while(my $test = $sth->fetchrow_hashref){
print "$test \n";


Als ergebnis bekomm ich das:
HASH(0x1db0240)
HASH(0x1db06f0)
HASH(0x1db06d8)
HASH(0x1db0240)

aber PartID 1 und 3 sind gleich und 2 und 4 sind glecih warum bekomm ich dann so ein komisches ergebnis ? Eigentlich müssten doch hash 1und 3 und 2 und 3 auch gleich sein und noicht 1 und 4 oder ????

View full thread String zu hash wandeln + CSV