Is it possible to alter more than one collection in a single query with MongoDB?

A SQL example:

begin
update table_1 set some_field=1;
update table_2 set a_different_field=2;
commit
link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I think you need to use db.eval for something like that. With db.eval you can execute javascript on the server.

You can find more info about it at the mongoDB website.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.