NoSQLBooster for MongoDB software usage

1. Database connection

1) Click Connect to create the required Connect

2) Click Create, if it already exists, click Connect in the lower right corner after checking it; otherwise: you can create a new database connection, enter Serevr, which is the database address and port, and authentication information: database name, login user name, and password; After the input is complete, click Save&Connect to test whether the connection is successful;

3) After the connection is successful, you can operate the database and its tables

  3) Database and table operations

Inquire

Double-click the table to view the data of the table;

method one:

Enter query conditions, format:

db.object.find({
key:'value'
})

Click Run to get the query result;

Method Two:

Click Query, the query selection box will pop up, select the query conditions and click OK and Run to get the query results

Modify, add, delete

Click the corresponding icon, a new tab will open, and you can add, modify, or delete;

 

 

Guess you like

Origin blog.csdn.net/weixin_43452467/article/details/111174305