Difference between revisions of "MongoDB JS Files"

From mi-linux
Jump to navigationJump to search
Line 19: Line 19:
 
* the full hostname is: '''mi-linux.wlv.ac.uk''' (or '''csl-student.wlv.ac.uk''')
 
* the full hostname is: '''mi-linux.wlv.ac.uk''' (or '''csl-student.wlv.ac.uk''')
 
* the login and username is your normal University username and password
 
* the login and username is your normal University username and password
 +
  
 
=== Create a file ===
 
=== Create a file ===
Line 36: Line 37:
 
* '''printjson''' is needed to output the results, otherwise MongoDB will just return ''true''.
 
* '''printjson''' is needed to output the results, otherwise MongoDB will just return ''true''.
 
* '''toArray()''' is used instead of pretty().
 
* '''toArray()''' is used instead of pretty().
 +
  
 
== Run a JS File ==
 
== Run a JS File ==
Line 47: Line 49:
  
 
See the [https://docs.mongodb.com/manual/tutorial/write-scripts-for-the-mongo-shell/ MongoDB] manual for further details.
 
See the [https://docs.mongodb.com/manual/tutorial/write-scripts-for-the-mongo-shell/ MongoDB] manual for further details.
 +
  
 
== Next Step ==
 
== Next Step ==
  
 
Return to the [[MongoDB_Workbook|Workbook]].
 
Return to the [[MongoDB_Workbook|Workbook]].

Revision as of 17:37, 24 October 2016

Main Page >> MongoDB >>MongoDB Workbook >> JavaScript Files

Query Files

The Mongo Shell used mi-linux is an interactive JavaScript interface to MongoDB. As you have seen the mongo shell can be used to query and update your data.

So far the query examples seen are not saved for future use. The data will be stored in the database, but not the queries used.

If you wish to save a query, a text editor should be used to create a .js file. If you are familiar with vi, this can be used on mi-linux (csl-student) to create the file.

Note, these files are created outside the MongoDB environment.

If you do not know how to use vi then it is probably easier if you use something like NotePad++ on your PC to create,or amend the file, then use a secure file transfer protocol (sftp) programme to transfer it to mi-linux using a client, such as FireZilla.

Using FTP

Note when using a FTP client:

  • it must be a secure connection, i.e., sftp
  • the full hostname is: mi-linux.wlv.ac.uk (or csl-student.wlv.ac.uk)
  • the login and username is your normal University username and password


Create a file

Use a text editor you are familiar with and type in the following:

printjson(db.deptCollection.find({deptno:10},
  { employees: {$elemMatch: { job: "MANAGER"}}}).toArray())


Save the file as:

myQuery.js

Note:

  • this file is created outside MongoDB.
  • printjson is needed to output the results, otherwise MongoDB will just return true.
  • toArray() is used instead of pretty().


Run a JS File

Within MongoDB type in:

load("myQuery.js")


Further Information

See the MongoDB manual for further details.


Next Step

Return to the Workbook.