# create a table # $table = adTie( 'CSV','my_db.csv','o', {col_names=>'name,country,sex'} ); # insert a row # $table->{Sue} = {country=>'de',sex=>'f'}; # delete a single row # delete $table->{Tom}; # select a single value # $str = $table->{Sue}->{country}; # loop through table # while ( my $row = each %$table ) { print $row->{name} if $row->{sex} eq 'f'; } # select multiple rows # $rows = $table->{{age=>'> 25'}} # update multiple rows # $table->{{country=>'Nz'}}={country=>'nz'};