如何将 std::set 中的值流式传输到 MySQL c++连接器 setBlob()?

发布于 2024-10-25 14:37:24 字数 150 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弄潮 2024-11-01 14:37:24

我不熟悉您正在使用的 MySQL 库,但如果它使用 istream,那么它看起来像这样:

void PutInt(istream &stream, int value)
{
  uint8_t byte[4];

  // converting to little-endian 32bits (DWORD size)
  byte[0] = value; 
  byte[1] = value >> 8;
  byte[2] = value >> 16;
  byte[3] = value >> 24;

  // write to stream
  for (int i = 0 ;i < 4; i++)
    stream>>byte[i];
}

void PutSet(istream &stream, std::set<int> &some_set)
{
  std::set<int>::iterator it;

  for (it = some_set.begin(); it != some_set.end(); it ++)
    PutInt(stream,(*it));
}

I'm not familar with MySQL library that you're using, but if it's using istream, then it would look like this:

void PutInt(istream &stream, int value)
{
  uint8_t byte[4];

  // converting to little-endian 32bits (DWORD size)
  byte[0] = value; 
  byte[1] = value >> 8;
  byte[2] = value >> 16;
  byte[3] = value >> 24;

  // write to stream
  for (int i = 0 ;i < 4; i++)
    stream>>byte[i];
}

void PutSet(istream &stream, std::set<int> &some_set)
{
  std::set<int>::iterator it;

  for (it = some_set.begin(); it != some_set.end(); it ++)
    PutInt(stream,(*it));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文