MongoDB:如何在 C++ 中将二进制数组存储在 BSON 中?
使用 C++ 驱动程序将二进制数组添加到 BSON 的语法是什么?我确信它在文档中的某个地方,但找不到它。
What's the syntax for adding binary array to a BSON with C++ driver? I'm sure it's somewhere in the docs, but can't find it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 http://groups.google.com/group/mongodb-user/ browser_thread/thread/b836032ad24dc00d
要在 C++ 中创建存储二进制数据的 BSONObj,您可以执行以下操作
:这里: http://api.mongodb.org/cplusplus/current/classmongo_1_1_b_s_o_n_obj_builder.html#a6882df3d0e4ca68446684769bc9e4d18
From http://groups.google.com/group/mongodb-user/browse_thread/thread/b836032ad24dc00d
To create a BSONObj in C++ that stores binary data, you can do something like:
Documentation here: http://api.mongodb.org/cplusplus/current/classmongo_1_1_b_s_o_n_obj_builder.html#a6882df3d0e4ca68446684769bc9e4d18