Nosql 3
MonjaDB Eclipse Plugin for Mongo DB
“Monja DB” is a plugin for Eclipse for Mongo Database.It provides a GUI view for Mongo Database Document and Collection. Link for Monja plugin:- http://marketplace.eclipse.org/content/monjadb#.UXauncrV_1U The idea behind developing this plugin is:- a. Rapid Application Development. b. Easy Log tracing. This Demo […]
Getting Started With Mongo Shell : Documents And Collection
In my previous post(Mongo Database Installation) we have seen Mongo database installation on windows machine. In this post, we will see how to use Mongo shell to connect to Mongod service .We will also see how we can create collection and documents in Mongo shell. Mongo Shell is like an interface where we can send […]
Couchdb : Adding Document Using Java Couchdb4j
Couchdb4j is a library for Couch Database for manipulating document in database. The jar file :- http://code.google.com/p/couchdb4j/downloads/list In this Demo ,“A new Student document is created with properties nad added to the student database”. Project structure:- The Java code CouchDBTest.java is , package com.sandeep.couchdb.util;import java.util.HashMap;import java.util.Map;import com.fourspaces.couchdb.Database;import com.fourspaces.couchdb.Document;import com.fourspaces.couchdb.Session;public class […]
Working With Futon : Replicating a Database
Couch database provides the feature of replication to copy a database.It is a nice feature to backup the document. It supports continuous replication also. Here in Every 5 seconds the replicator service get called for sync. In this Demo,”We are using Futon to create two database replica of student. “student_replica” is a backup replica of […]