in reply to Re: error catching in mongodb and perl
in thread error catching in mongodb and perl
i got an error while using MogoDB::MongoClient as below,i tried to install using cpan but its not istalling.
use MongoDB; use JSON; use Data::Dumper; $client = MongoDB::MongoClient->new( host => 'remote_machine_ip:270 +17'); $client->connect; $client->authenticate('username', 'password', 'authenticationdb'); my $database = $client->get_database('prav'); my $collection = $database->get_collection( 'student'); my $data=$collection->find(); while (my $doc = $data->next) { my @qual=@{$doc->{'qualifications'}}; print @qual; print "\n"; } Can't locate object method "new" via package "MongoDB::MongoClient" (p +erhaps you forgot to load "MongoDB::MongoClient"?) at .. cpan MongoDB::MongoClient ---also tried cpan MongoDB .... .... Running make test Can't test without successful make Running make install Make had returned bad status, install seems impossible
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: error catching in mongodb and perl
by boftx (Deacon) on Nov 10, 2014 at 08:31 UTC | |
by praveenchappa (Acolyte) on Nov 10, 2014 at 08:37 UTC | |
by Anonymous Monk on Nov 10, 2014 at 08:45 UTC | |
by praveenchappa (Acolyte) on Nov 10, 2014 at 09:10 UTC | |
by marto (Cardinal) on Nov 10, 2014 at 09:30 UTC | |
|