Leser: 2
|< 1 2 >| | 11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use DBI;
print "content-type: text/html\n\n";
print '<html><head><title>Outputtitle><head><body>';
my $dbh = DBI->connect('dbi:dbd:DATENBANK:MSSQLSERVER, 'USER', 'PWD') or die ("da geht nix");
my $sql = q/select dokument, version from dokuversion/;
my $sth = $dbh->prepare($sql);
$sth->execute;
while (my @row = $sth->fetchrow_array) {
print "<tr><td>$row[0]</td><td>$row[1]</td></tr>\n";
}
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
29
30
31
32
33
34
35
36
#!C:\apachefriends\xampp\perl\bin\perl.exe
use DBI;
$dsn = 'DSNNAME;
$dbh = DBI->connect("dbi:odbc:$dsn");
$sth = $dbh->prepare(qq(SELECT * from TABELLE));
$sth->execute;
while ( @row = $sth->fetchrow_array ) {$rows = "@row\n";};
$dbh->disconnect;
#########################################
# display output
#########################################
print "Content-type: text/html\n\n";
print qq~
<html>
<head>
<title>Auto Request</title>
</head>
<body >
daten wurden abgefragt....
</b>
<br><p>
</body>
</html>
~;
|< 1 2 >| | 11 Einträge, 2 Seiten |