我有两个列的表:“total”和“returned”,我试图从这两个列中获取所有的列值,但它不适合我。它只取列中的第一行,我要列中的总值
我的代码:
Private Sub TotalTextBox_TextChanged(sender As Object, e As EventArgs) Handles TotalTextBox.TextChanged
Dim str As String = "Server=localhost;Port=3306;Database=testdb;Uid=root;Pwd=password"
Using net As New MySqlConnection(str)
Dim totalnet As String = "Select * from testata where Qty_Returned and Total"
Dim cm As New MySqlCommand(totalnet, net)
net.Open()
Dim rdnet As MySqlDataReader = cm.ExecuteReader()
If rdnet.Read() Then
Label16.Text = rdnet.GetString(12) - rdnet.GetString(11)
Else
End If
End Using
End Sub
2条答案
按热度按时间oug3syen1#
很高兴你成功了。只是一些建议。。。为此代码和所有代码启用选项strict。注解是内联的。
不确定此事件中出现此代码的原因。
mnemlml82#
我用这个代码得到了解决方案: