Leser: 2
4 Einträge, 1 Seite |
Quote13.1.5. CREATE TABLE Syntax
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
[(create_definition,...)]
[table_options] [select_statement]
1
2
3
4
5
6
7
8
9
10
11
12
13
my $dbh = DBI->connect("DBI:mysql:database=".$$CONFIG_ref{'db_name'}.";host=".$$CONFIG_ref{'db_host'},$$CONFIG_ref{'db_user'},$$CONFIG_ref{'db_passwd'})
or return $$SITE_LANGUAGE_ref{"Die Datenbank kann nicht angesprochen werden."}." Error: ".$DBI::errstr;
my $statement="show tables";
my $sth = $dbh->prepare($statement) or die("Kann keine Abfrage ($statement) starten:$DBI::errstr");
$sth->execute;
my %tables = ();
while (my $row = $sth->fetchrow)
{
$tables{$row} = 1;
}
return join "<br>\n", keys %tables; # als test
4 Einträge, 1 Seite |