Thread Problem mit DBD::CSV: SELECT * FROM ... bring kein Ergebnis (7 answers)
Opened by format_c at 2004-03-20 20:14

Ronnie
 2004-03-21 18:14
#31857 #31857
User since
2003-08-14
2022 Artikel
BenutzerIn
[default_avatar]
Bei mir geht es so:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl
use strict;
use warnings;
use DBI;

# Declare variables
my $db = 'C:/Perlen/csv';
my $prefix = '+49';

# Makes a Datebase Handler
my $dbh = DBI->connect("DBI:CSV:f_dir=$db")  or die DBI::errstr;
$dbh->{csv_tables}->{phonebook} = { file => 'test.csv' };

my $sql = qq|
SELECT * FROM phonebook
|;

my $sth = $dbh->prepare( $sql ) or die $dbh->errstr;
$sth->execute() or die $dbh->errstr;
while (my @row = $sth->fetchrow_array()) {
 print join "\t", @row;
 print "\n";
}

$sth->finish();
$dbh->disconnect();

exit;


Mit folgender CSV-Datei:
Code: (dl )
1
2
3
4
ID, Nummer, Vorname, Nachname
1,"0000000000000","Christine","Nachname"
2,"+49000000000000","PS","Bernhardt"
3,"+496985725","Irgendwer","Nachname"


Die erste Zeile wird anscheinend ignoriert.\n\n

<!--EDIT|Ronnie|1079885784-->

View full thread Problem mit DBD::CSV: SELECT * FROM ... bring kein Ergebnis