将十进制 (SQL) 转换为双精度 C++
我有一个 SQL 查询,它返回只有一列十进制类型 (18,18) 的记录。
在 C++ 代码中,我需要将每个值转换为 double 以将其添加到数组中。
最好的方法是什么?
谢谢
I have a SQL query which return records with only one column of type decimal (18,18).
In the C++ code I need to convert each value to double to add it to an array.
What's the best way of doing it?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议在从数据库中取出它之前将其转换为 Real,它们的数据类型大致相同。 http://msdn.microsoft.com/en-us/library/ms173773.aspx
I would suggest converting it to a Real before taking it from the database they are roughly the same datatype. http://msdn.microsoft.com/en-us/library/ms173773.aspx