如何将 std::set 中的值流式传输到 MySQL c++连接器 setBlob()?
在 C++ 中: 有一个 std::set 整数
我在 MySQL 中 : 我有一个带有 blob 列的表
我想将整数流式传输到 blob 列中,但我不确定如何执行此
操作编辑: 忘了提及,我需要确保整数打包为小端 DWORD
In C++:
I have a a std::set of integers
In MySQL:
I have a table with a blob column
I would like to stream the integers into the blob column but I'm not sure how to do so
edit:
Forgot to mention that I need to ensure that the integers are packed as little endian DWORDs
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不熟悉您正在使用的 MySQL 库,但如果它使用 istream,那么它看起来像这样:
I'm not familar with MySQL library that you're using, but if it's using istream, then it would look like this: