用vb.net和SQL ServerVB.Net數據集檢查空
所以我的數據集是這樣的:
Dim ds3 As New FOCUSDataSetTableAdapters.GajiTableAdapter
,我想在數據集中的項目到一個數組。但該數據集是空的現在...所以我儘量..
Dim smp As New List(Of String)()
Try
For i = 0 To ds3.GetData.Count - 1
If (ds3.GetData.Rows(0).Item(3) Is Nothing) Then
smp.Add("0")
End If
Next
Catch ex As Exception
i = i - 1
End Try
所以基本上我想要的是...如果數據庫是空/空然後添加「0」到數組。但每次我運行這個代碼,它只會給我錯誤狀態,現在有行在當前位置(0)...
好吧..現在得到它..非常感謝你 – 2013-05-09 13:45:21