とりあえず、MongoDBと、MongoDB::Adminをインストールして、 #!/usr/bin/perl use 5.010; use strict; use warnings; use MongoDB; use MongoDB::Admin; my $connection = MongoDB…
データベース一覧 MySQL show databases; MongoDB show dbs; データベースの選択 MySQL use hoge; MongoDB use hoge; コレクション(テーブル)の一覧 MySQL show tables; MongoDB show collectio…