Skip to main content

Posts

Showing posts from June, 2014

MongoDb : CRUD Operations Using Java

This article will show you how to use Java to perform CRUD operations on MongoDB records. If you're new to MongoDB, we recommend starting with the Getting Started With MongoDB tutorial. To begin, we'll establish a Person and Person Images table (a collection in MongoDB) to make CRUD operations in MongoDB easier. Define Data Structure The following is the data structure of the Person  and  Person Images  table (collection in MongoDB). Person id Int (primary) username String first_name String last_name String email String description String birthdate Date country String state String city String lat String lang Strin

Subscribe for latest tutorial updates

* indicates required