Category: mongodb
Posts of Category: mongodb
  1. How to import/export data in mongodb

    How to import/export ALL documents in mongodb On Linux Export mongodump -d db_name -o /home/dir/_db Import mongorestore -d new_db_name /home/dir/_db/db_name On Windows Export mongodump -d db_name -o D:\fold...Learn More
    mongodbDatabase
  2. MongoDB vs SQLite – Difference between MongoDB and SQLite

    **MongoDB vs SQLite – Difference between MongoDB and SQLite** In this article, you will learn about difference between MongoDB and SQLite. MongoDB MongoDB first version was released in 2009. It is the most reli...Learn More
    SQLiteSQLmongodbDatabaseProgramming Languages
  3. Analyzing API Data with MongoDB, Seaborn, and Matplotlib

    Analyzing API Data with MongoDB, Seaborn, and Matplotlib Introduction A commonly requested skill for software development positions is experience with NoSQL databases, including MongoDB. This tutorial will expl...Learn More
    Pythondata scienceAPImongodbmatplotlibDatabaseProgramming Languages
  4. Integrating MongoDB with Flask Using Flask-PyMongo

    Introduction Building a web app almost always means dealing with data from a database. There are various databases to choose from, depending on your preference. In this article, we shall be taking a look at how...Learn More
    PythonflaskmongodbProgramming LanguagesDatabase
  5. Integrating MongoDB with Python Using PyMongo

    Integrating MongoDB with Python Using PyMongo Introduction In this post, we will dive into MongoDB as a data store from a Python perspective. To that end, we'll write a simple script to showcase what we can ach...Learn More
    PythonmongodbDatabaseProgramming Languages
  6. Getting Started with Camo

    Getting Started with Camo Edit: Updated code to Camo v0.12.1 Introduction First of all, Camo is a new class-based ES6 ODM for MongoDB and Node. With mainstream ES6 quickly approaching us, I thought we were long...Learn More
    JavaScriptcamoNodejsmongodbes6Programming LanguagesFrameworkDatabase
  7. Introducing Camo: A class-based ES6 ODM for Mongo-like databases

    Introducing Camo: A class-based ES6 ODM for Mongo-like databases Edit: Updated Camo code to v0.12.1 What is Camo? Camo is an ES6 ODM with class-based models. A few of its main features are: dead-simple schema d...Learn More
    camoNodejsmongodbes6DatabaseFramework
  8. Mongoose with Node.js - Object Data Modeling

    Mongoose with Node.js - Object Data Modeling Introduction NoSQL brought flexibility to the tabular world of databases. MongoDB in particular became an excellent option to store unstructured JSON documents. Data...Learn More
    JavaScriptNodejsDatabasemongodbObjectProgramming LanguagesFramework
  9. A Beginner-Level Introduction to MongoDB with Node.js

    A Beginner-Level Introduction to MongoDB with Node.js Introduction In this article, we are going to talk about how to use the MongoDB database with Node.js. There are couple of ways to do this, including the a ...Learn More
    JavaScriptNodejsmongodbDatabaseProgramming LanguagesFramework
  10. Spring Data: MongoDB Tutorial

    Spring Data: MongoDB Tutorial Overview Spring Data is an umbrella project which contains many submodules, each specific to a particular database. In this article, we'll be covering Spring Data MongoDB by buildi...Learn More
    JavaSpringmongodbProgramming LanguagesDatabase
  11. Guide to Flask-MongoEngine in Python

    Guide to Flask-MongoEngine in Python Introduction Building a web app almost always means dealing with data from a database. There are various databases to choose from, depending on your preference. In this guid...Learn More
    PythonflaskmongodbProgramming LanguagesDatabase
  12. Guide to Using The Django MongoDB Engine with Python

    Guide to Using The Django MongoDB Engine with Python Introduction In this article, we will see how to use MongoDB, a non-relational database, with Django, a Python Web Framework. Django is commonly used with Po...Learn More
    PythonDjangoWebsitemongodbProgramming LanguagesFrameworkDatabase