操作 sql 表中存储为 varbinary(max) 的数据文件(文本)
寻求帮助并需要指出正确的方向,有人可以帮忙吗?
有一个包含 10000 个数字/数据点的数据文件 (txt)。 将数据文件作为 varbinary(MAX) 存储在 SQL 表中。
我的目标是根据用户请求检索文件并将数字绘制/绘制为折线图。
让 DataReader 直接在屏幕上显示数字没有问题,但我对如何将数字放入数据集(或表格)以绘制图表感到困惑......
任何人都可以提供建议或指导吗?
非常感谢。 溷
looking for help and need pointing in the right direction, can anyone assist?
Have a data file (txt) that contains 10000 numbers/data points. Storing the data file as varbinary(MAX) in an SQL table.
My goal is to retrieve the file on user request and plot/chart the numbers as a line chart.
No problem in getting DataReader to display the numbers directly to the screen, but I'm stuck as to how get the numbers into a DataSet (or table) to plot a chart....
Can anyone offer advice or give direction?
Many thanks. Miry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设从数据库检索数据点时由换行符分隔。
可能有一个更智能的 .Net 方法可以帮助您做到这一点,但是一种功能性的(如果是基本的)方法会类似于(在 VB .Net 中 - 或者我的粗略近似):
这是基本的 - 一些错误处理会是个好主意 - 但希望它能帮助您开始。
I'm assuming that the data points are delimited by new line characters when retrieved from the database.
There's probably a smarter .Net method to help you do it, but a functional, if basic, way of doing this would be something like (in VB .Net - or my rough approximation of it):
This is basic - some error handling would be a good idea - but hopefully it'll get you started.