操作 sql 表中存储为 varbinary(max) 的数据文件(文本)

发布于 2024-07-27 02:56:52 字数 265 浏览 7 评论 0原文

寻求帮助并需要指出正确的方向,有人可以帮忙吗?

有一个包含 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 技术交流群。

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

发布评论

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

评论(1

满天都是小星星 2024-08-03 02:56:52

我假设从数据库检索数据点时由换行符分隔。

可能有一个更智能的 .Net 方法可以帮助您做到这一点,但是一种功能性的(如果是基本的)方法会类似于(在 VB .Net 中 - 或者我的粗略近似):

'create a new datatable
Dim myDT As New DataTable("DataPoints")

'add a column to the data table (assuming your data is integer)
myDT.Columns.Add("Point", System.Type.GetType("System.Int32"))

'split the string containing the points into an array
dim pointArray as string() = pointString.Split(vbcrlf)

'add the points to the data table
dim s as string
foreach s in pointArray
     myDT.Rows.Add(Int32.Parse(s))
next

这是基本的 - 一些错误处理会是个好主意 - 但希望它能帮助您开始。

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):

'create a new datatable
Dim myDT As New DataTable("DataPoints")

'add a column to the data table (assuming your data is integer)
myDT.Columns.Add("Point", System.Type.GetType("System.Int32"))

'split the string containing the points into an array
dim pointArray as string() = pointString.Split(vbcrlf)

'add the points to the data table
dim s as string
foreach s in pointArray
     myDT.Rows.Add(Int32.Parse(s))
next

This is basic - some error handling would be a good idea - but hopefully it'll get you started.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文