Thread Abfrage nicht vollständig, benötige Hilfe (14 answers)
Opened by Gast at 2007-09-27 14:45

renee
 2007-09-27 14:49
#100056 #100056
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
my $dbh = DBI->connect("$db_name","$db_user","$db_pass") || die "Database connection not made: $DBI::errstr";
my $sth = $dbh->prepare("SELECT * FROM pm_in WHERE pm_to = '$nick' AND new = '1' ORDER BY date DESC");    
$sth->execute();

my $count=0;
while(my @entries = $sth->fetchrow_array){
    print "Datensatz: @entries\n";
    $count++;
}

#my $output = $main->createInfoOutput('newmails',{mails => $sth});

$sth->finish();
$dbh->disconnect();
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Abfrage nicht vollständig, benötige Hilfe