Examples of basic operations such as Android programming to connect to MongoDB and addition, deletion, modification, and query
The examples in this article describe basic operations such as Android programming to connect to MongoDB and add, delete, modify, and query. Share it with everyone for your reference, the details are as follows: Introduction to MongoDB Mongodb, a distributed document storage database, written in C++ language, aims to provide scalable, high-performance data storage solutions for WEB applications. MongoDB is a high-performance, open source, schema-less document database, which is currently a popular NoSQL database. It can be used to replace traditional relational databases or key/value storage in many scenarios. Mongo is developed using C++. Mongo installation reference 1) Download the installation package file and extract it to a certain folder. Official download address: http://www.mongodb.org/downloads 2) Configure environment variables: add the installation path after path. 3) Start the Mongo database: Enter “cmd” -> type “mongod –dbpath D:\amp\MongoDBDATA” D:\amp\MongoDBDATA represents the database file storage path 4) Start the Mongo client: mongo 127.0.0.1:27017/admin Android connects to MongoDB Step 1: Download and import the jar package into the project Step 2: Install MongoDB on PC (see MongoDB installation) Step 3: Write code to connect to MongoDB to implement simple operations (add, delete, modify and query) Code reference (Android side, also applicable to java and…
Examples of basic operations such as Android programming to connect to MongoDB and addition, deletion, modification, and query
The examples in this article describe basic operations such as Android programming to connect to MongoDB and add, delete, modify, and query. Share it with everyone for your reference, the details are as follows: Introduction to MongoDB Mongodb, a distributed document storage database, written in C++ language, aims to provide scalable, high-performance data storage solutions for WEB applications. MongoDB is a high-performance, open source, schema-less document database, which is currently a popular NoSQL database. It can be used to replace traditional relational databases or key/value storage in many scenarios. Mongo is developed using C++. Mongo installation reference 1) Download the installation package file and extract it to a certain folder. Official download address: http://www.mongodb.org/downloads 2) Configure environment variables: add the installation path after path. 3) Start the Mongo database: Enter “cmd” -> type “mongod –dbpath D:\amp\MongoDBDATA” D:\amp\MongoDBDATA represents the database file storage path 4) Start the Mongo client: mongo 127.0.0.1:27017/admin Android connects to MongoDB Step 1: Download and import the jar package into the project Step 2: Install MongoDB on PC (see MongoDB installation) Step 3: Write code to connect to MongoDB to implement simple operations (add, delete, modify and query) Code reference (Android side, also applicable to java and…
PHP modify mongo, PHP operation MongoDB basic tutorial (connection, new addition, modification, deletion, query)
The code is as follows: //Connect to localhost:27017 $conn = new Mongo(); //Connect to the remote host by default Port $conn = new Mongo('test.com'); //Connect to the remote host port 22011 $conn = new Mongo('test.com:22011'); //MongoDB has username and password $conn = new Mongo(“mongodb://${username}:${password}@localhost”) //MongoDB has a username and password and specifies the database blog $ conn = new Mongo(“mongodb://${username}:${password}@localhost/blog”); //Multiple servers $conn = new Mongo(“mongodb://localhost:27017,localhost:27018”); //Select database blog $db = $conn->blog; //Specify the result set (table name :users) $collection = $db->users; //New $user = array('name' => 'caleng', 'email&# 39; => 'admin#admin.com'); $collection->insert($user); //Modify $newdata = array('$set' => array(“email” => “test@test.com”)); $collection->update(array(“name” => “caleng”), $newdata); //Delete $collection ->remove(array('name'=>'caleng'), array(“justOne” => true)); //Find $cursor = $collection->find(); var_dump($cursor); //Find one p> $user = $collection->findOne(array('name' => 'caleng'), array('email&# 39;)); var_dump($user); //Close the database $conn->close();