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
Copy file name to clipboardExpand all lines: Readme.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -47,23 +47,23 @@ A simple example of inserting a document.
47
47
48
48
Important
49
49
========
50
-
51
-
The version V0.8.0 > contains a C/C++ native BSON parser, this leads to some small changes in the way you need to access the
52
-
BSON classes as you need to use the right versions of the classes with the right driver.
53
-
54
-
For the existing javascript driver please reference BSON via
55
-
56
-
BSON = require('./mongodb').BSONPure
57
-
58
-
or when using the native bson parser use
59
-
60
-
BSON = require('./mongodb').BSONNative
61
50
62
51
To enable the driver to use the C/C++ bson parser pass it the option native_parser:true like below
63
52
64
53
var client = new Db('integration_tests_20',
65
54
new Server("127.0.0.1", 27017),
66
55
{native_parser:true});
56
+
57
+
The version V0.8.0 > contains a C/C++ native BSON parser, this leads to some small changes in the way you need to access the BSON classes as you need to use the right versions of the classes with the right driver.
58
+
59
+
To access the correct version of BSON objects for your instance do the following
0 commit comments