Download MTDB 0.1.0
Antivirus information.
We did not scan MTDB 0.1.0 for viruses, adware, spyware or other type of malware. For your own protection it's recommended to have an updated antivirus installed on your computer when downloading and installing programs from freedownloada.
freedownloada lists downloads from various software publishers, so if you have a question regarding a particular software contact the publisher directly. The download links for MTDB 0.1.0 are provided to you by freedownloada without any warranties, representations or gurantees of any kind, so download at your own risk.
Description
MTDB is a multidimensional transparent hash database.SYNOPSIS # Load the package use MTDB qw($serializer); # Bind the hash to the class $db = tie %hash, 'MTDB',FILE => $file,SAFER => 1; # Save to disk all changed records $db->sync();# Get all record keys @array = keys %hash;# Check if a record exists exists $hash{$foo};$bar = $hash{$foo}; exists $bar->{$foobar}; # Get a field $bla = $hash{$key}; $scalar = $bla->{$key2}->[0]; $scalar = $bla->{$key2}->{$key3}; # Assign to a field $bla->{$key2}->{$key3} = $value; #store in mainhash $hash{$key} = $bla; # save to disc $db->sync();Requirements:· Perl