sql = "select * from test where IP = '192.168.103.21' "
Dim da As New SqlDataAdapter(sql, Conn) 'Connection
Dim ds As New DataSet
da.Fill(ds, "test")
dim num as integer = ds.Tables("test").Rows(0).Item("Counts").ToString
Tag : ASP, VB.NET
Date :
2015-06-12 11:25:14
By :
omyam001
View :
811
Reply :
5
No. 1
Guest
Code (VB.NET)
If (ds.Tables("test").Rows.Count() > 0) Then
dim num as integer = If(ds.Tables("test").Rows(0).Item("Counts") is nothing, 69, ds.Tables("test").Rows(0).Item("Counts"))
End If
Date :
2015-06-12 12:54:30
By :
หน้าฮี
No. 2
Guest
จริงฯแล้วมันต้องเขียนแบบนี้
Code (VB.NET)
Dim num As Integer = 69
If (ds.Tables("test").Rows.Count() > 0) AndAlso (ds.Tables("test").Rows(0).Item("Counts") is not nothing) Then
num = ds.Tables("test").Rows(0).Item("Counts")
End If
'
'ลดการใช้ Try...Catch...End try
'
Date :
2015-06-12 13:02:02
By :
หน้าฮี
No. 3
Guest
แถมให้อีกนิดหนึ่ง
AND <> ANDALSO ในทุกฯกรณี
Date :
2015-06-12 13:04:02
By :
หน้าฮี
No. 4
Guest
แถมให้อีกนิดหนึ่ง dim num as integer = ds.Tables("test").Rows(0).Item("Counts").ToString