[VB.NET]在线急等问题解决方法!~~~

前端之家收集整理的这篇文章主要介绍了[VB.NET]在线急等问题解决方法!~~~前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在线急等问题解决方法!~~~ 其实问题很简单因为我是菜鸟!~~~ 就是如何把数据库里某个字段下面的所有数据统计出结果然后显示在文本框里!~~ 比如 字段1 字段2 Aaa 200 Bbb 150 Ccc 300 我现在想textBox.text=560 怎么实现呀,我是ACCESS数据库存的数据!~~ 谢谢各位了!~~ __________________________________________________________________________ select sum(字段2) from 表名 ----- 结果是650,不知道560如何得。。。 __________________________________________________________________________ 樓上正解 __________________________________________________________________________ 这个sql语句我知道写呀,但是如何把这个结果的值传给textBox.text文本框呢!~~560我看错了,呵呵!~~因该是650才对!~ 急求如何取出sql语句执行后的值呀!~~ __________________________________________________________________________ textBox.text = 结果.toString() __________________________________________________________________________ Dim mdbCommand As New OleDbCommand Dim rs As OleDbDataReader Dim intRtn as Integer mdbCommand.Connection = _MdbConn mdbCommand.CommandText = select sum(字段2) from 表名 rs = mdbCommand.ExecuteReader If rs.Read Then If Not rs.IsDBNull(0) Then intRtn = CInt(rs.GetValue(0)) Else intRtn = 0 End If End If If Not IsNothing(rs) Then rs.Close() rs = Nothing End If mdbCommand.Dispose() __________________________________________________________________________ 原文链接:https://www.f2er.com/vb/263359.html

猜你在找的VB相关文章