如何从 SQL Server 中检索整数数组?
我正在创建一个连接到 SQl Server 2008 数据库的 C++/CLI 应用程序。如何退休存储在 varbinary 字段中的短整数数组。将短整数数组转换为字节数组后,我将它们存储在 varbinary 字段中。
I am creating a C++/CLI application that connects to a SQl Server 2008 database. How can I retireive an array of short integers stored in a varbinary field. I am storing them in a varbinary field after converting the short integer array to byte array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是你必须手动转换它。尝试在 C 中使用 byte[] 并在 sql 中使用 varbinary。
这可能会有所帮助
,排序后
但对我来说,我将使用 postgre,它是具有整数 [] 数据类型的开源数据库
unfortuantely u have to manually convert it. try use byte[] in C and varbinary in sql.
this might helps
and after sorted
but for me, i'll use postgre which is open source databse that has integer[] datatype