ผมจะทำการ select data จาก Database Oracle มา Show ใน DataGridview ถ้ามีข้อมูลก็จะ Show ตามปกติ แต่ถ้าไม่มี Data จะให้ Show MessageBox แจ้งเตือน "Data not Found" จะต้อง Check ยังไงครับ รบกวนผู้รู้ช่วยแนะนำและตัวอย่างด้วยครับ
Code ส่วนที่เรียก Data
Code
str = "select t.new_upn_name, count(t.new_upn_name) from REPORT_TB_STOCK_BARCODE t where t.factory_no = '4' and t.warehouse_id = 8
and t.l_status_id = 'I'
group by t.new_upn_name"
myCommand = New OracleCommand("select count (*) as count_rows from (" & str & ")", conn)
myCommand.CommandType = CommandType.Text
reader = myCommand.ExecuteReader
reader.Read()
Private Function CheckData() As Boolean
Dim ret As Boolean = True
If reader.HasRows Then
MessageBox.Show("Data not found !!! ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
ret = False
End If
Return ret
End Function