VB.net 查询获取数据库数据信息

VB.net 查询获取数据库数据信息实现函数,需要的朋友可以参考下,代码比较简单。

复制代码 代码如下:


'数据操作执行
Public Sub getConn(ByVal SqlStr As String, ByVal TableName As String)
Try
objCommand.CommandText = SqlStr
objDataSet.Clear()
objDataAdapter.SelectCommand = objCommand
objDataAdapter.Fill(objDataSet, TableName)
Catch ex As Exception

MsgBox(ex.Message)
End Try
End Sub

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjfpzz.html