You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears the steps, mongoDbConnect -> dbAuthenticate -> dbAggregate limits the use of switching between databases after authentication. For instance, authenticating with "foo" database, then switching to "bar".
username=""password=""mongo<- mongoDbConnect("foo")
authenticated<- dbAuthenticate(mongo, username, password)
# Following will not run because data is within "bar" databasecounts<- dbAggregate(mongo, "collection", ... )
The text was updated successfully, but these errors were encountered:
It appears the steps, mongoDbConnect -> dbAuthenticate -> dbAggregate limits the use of switching between databases after authentication. For instance, authenticating with "foo" database, then switching to "bar".
The text was updated successfully, but these errors were encountered: