Visual Basic 2010 数据集
我正在使用 Visual Studio 2010,并且正在处理 Windows 应用程序表单。我正在努力处理我们的数据库。我可以在网格视图中连接和检索数据。
但我不想显示记录 - 我想将特定的行列放入变量中(简而言之,我想使用它)。 我的DataSet
称为ProductionDataSet
。 Table
称为 Employee
,有四列,分别称为 Employee
、First_Name
、Last_Name
和状态
。
现在我如何将第 4 列和第 5 行中的条目存储在变量 x 中?
I'm using Visual Studio 2010 and I'm working on a windows application form. I'm struggling with our database. I can connect and retrieve Data in the Grid View.
But I don't want to display the records - I want to put a specific row column in a variable (in short I want to work with it).
My DataSet
is called ProductionDataSet
. The Table
is called Employee
and has four columns called Employee
, First_Name
, Last_Name
and Status
.
How do I now store lets say the entry in column 4 and row 5 in the variable x?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
连接到数据库后,您需要将数据放入 DataTable 中,然后操作 Row Items
After you connect to the databse you need to put the data into a DataTable and then manipulate the Row Items