Thread Fragen zu Datenbanken.
(6 answers)
Opened by Sven_123 at 2010-08-10 15:50
Du könntest das so machen:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #!/usr/bin/perl use strict; use warnings; my %hash; dbmopen( %hash, 'test', 0644 ); if ( !keys %hash ) { print "no keys in database, read the file\n"; # simuliere das einlesen der Datei $hash{key1} = 'value1'; } while ( my ($key,$value) = each %hash ) { print sprintf "%s - %s\n", $key, $value; } $hash{$$} = time; dbmclose( %hash ); 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/ |