2 Einträge, 1 Seite |
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use DBI;
$db = "kat1";
$host = "localhost";
$user = "root";
$password = "";
my $dbh = DBI->connect("DBI:mysql:database=$db:host=$host",$user,$password)
or die "can not connect $DBI::errstr\n";
#--------sql-abfrage------------------
$sql = "Select MainContent from kat1 where id<30";
my $sth = $dbh->prepare($sql);
$sth->execute();
$anz=1;
$file="$anz.txt";
#my @files = (<*.txt>);
@dbinhalt=(""); #Speicher für alle datensaetze
@datensaetz=(""); #Speicher für einen datensaetz
$content=""; #speicher für inhalt
$i=0;
while( my @dbinhalt = $sth->fetchrow_array())
{
#printf "CONTENT: @zeile\n",$zeile[0];
for(@dbinhalt)
{
open(DATEI, ">$file") || die "Kann $file nicht öffnen";
#print DATEI "$_";
print DATEI "$dbinhalt[0]";
close(DATEI) || die "Kann $file nicht schließen";
$dbinhalt++;
$anz++;
}
}
#----db_verbindung sauber beenden-------------------------
$sth->finish ();#ergebnismenge schliessen
$dbh->disconnect();#verbindung zum server schliessen
exit();
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
37
#! /usr/bin/perl
use strict;
use warnings;
use DBI;
my $db = "kat1";
my $host = "localhost";
my $user = "root";
my $password = "";
my $dbh = DBI->connect("DBI:mysql:$db:$host",$user,$password)
or die "can not connect $DBI::errstr\n";
#--------sql-abfrage------------------
my $sql = "Select MainContent from kat1 where id<30";
my $sth = $dbh->prepare($sql);
$sth->execute();
my $anz=1;
while( my ($kat) = $sth->fetchrow_array())
{
my $file="$anz.txt";
open(DATEI, ">$file") || die "Kann $file nicht öffnen";
print DATEI $kat;
close(DATEI) || die "Kann $file nicht schließen";
$anz++;
}
#----db_verbindung sauber beenden-------------------------
$sth->finish ();#ergebnismenge schliessen
$dbh->disconnect();#verbindung zum server schliessen
exit();
2 Einträge, 1 Seite |