2011-09-16 14 views
0

私はVisual Studio 2010を使用していますが、私はWindowsアプリケーションフォームで作業しています。私は私たちのデータベースに苦労しています。私は接続し、グリッドビューでデータを取得することができます。Visual Basic 2010データセット

しかし、私はレコードを表示したくありません - 私は変数に特定の行の列を配置したい(要するに私はそれを使用したい)。 私のDataSetは、ProductionDataSetと呼ばれています。 TableEmployeeと呼ばれ、Employee,First_Name,Last_NameおよびStatusと呼ばれる4つの列を有する。

ここで、変数xの列4と行5の項目を保存する方法を教えてください。あなたが行のアイテムをデータテーブルにデータを配置し、操作する必要がdatabseに接続した後

答えて

0

' DataSet/DataTable variables 
Dim ProductionDataSet As New DataSet 
Dim dtProductionDataTable As New DataTable 
Dim daProductionDataAdapter As New OdbcDataAdapter 

' Variables for retrieved data 
Dim sEmployee As String = "" 
Dim sFirstName As String = "" 
Dim sSurname As String = "" 
Dim sStatus As String = "" 

'Connect to the database 
'' 

'Fill DataSet and assign to DataTable 
daProductionDataAdapter.Fill(ProductionDataSet , "ProductionDataSet") 
dtProductionDataTable = ProductionDataSet.Tables(0) 

'Extract data from DataTable 
' Rows is the row of the datatable, item is the column 

sEmployee = dtProductionDataTable.Rows(0).Item(0).ToString 
sFirstName = dtProductionDataTable.Rows(0).Item(1).ToString 
sSurname = dtProductionDataTable.Rows(0).Item(2).ToString 
sStatus = dtProductionDataTable.Rows(0).Item(3).ToString 
関連する問題