This object is in archive! 

Asking for license after purchase

Param shared this question 4 years ago
Answered

Getting this error when i copy code "You are using the free/personal edition of NoSQLBooster for MongoDB and the "Copy Query Code" feature is disabled, to unlock this feature, you need a commercial license."

Replies (1)

photo
1

In the brief summary of our compare editions page, we said:

The Personal Edition does not support Kerberos (GSSAPI), and LDAP (PLAIN) authentication and the feature "convert MongoDB query code to target languages, e.g., Java, c#..." is limited.

This explanation may not be obvious enough, sorry for the inconvenience.

If you want to convert your code to shell script, you can use "cursor.getShellScript" method.e.g.

db.listingsAndReviews.find({})
   .projection({})
   .sort({_id:-1})
   .limit(11)
   .getShellScript()

Replies have been locked on this page!