Leser: 2
6 Einträge, 1 Seite |
1 2
my $driver = "DBI:mysql:$db:$host"; my $dbh = DBI -> connect($driver,$user,$pass) or die "Database connection not made: $DBI::errstr";
1 2
my $sql = "create database $db "; my $sth = $dbh->prepare($sql) or die $dbh->errstr();
my $dbh = DBI->connect("dbi:mysql:host=$host", $user, $pass) ...
1 2 3 4 5 6 7 8
my $dbh = DBI->connect("dbi:mysql:host=$host", $user, $pass) or die "Database connection not made: $DBI::errstr"; my $sql = "show tables"; my $sth = $dbh->prepare($sql) or die $dbh->errstr(); $sth->execute() or die $dbh->errstr(); while (my @row = $sth->fetchrow_array()) { print $row[0]."\n"; };
@databases = $dbh->data_sources();
Hagen+2007-11-12 14:34:35--Irgendwie hilft mir das leider immer noch nicht weiter.
Code (perl): (dl )1 2 3 4 5 6 7 8my $dbh = DBI->connect("dbi:mysql:host=$host", $user, $pass) or die "Database connection not made: $DBI::errstr"; my $sql = "show tables"; my $sth = $dbh->prepare($sql) or die $dbh->errstr(); $sth->execute() or die $dbh->errstr(); while (my @row = $sth->fetchrow_array()) { print $row[0]."\n"; };
Ich erhalte immer noch als Fehlermeldung: ... keine Datenbank ausgewählt ...
my $sql = "show tables";
my $sql = "show databases";
6 Einträge, 1 Seite |