标题:求:VB2010中查询SQL2008数据库,查询并返回记录集的查询通用模块(代码)
只看楼主
lt_1970
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-12-21
 问题点数:0 回复次数:0 
求:VB2010中查询SQL2008数据库,查询并返回记录集的查询通用模块(代码)
求:VB2010中查询SQL2008数据库,查询并返回记录集的查询通用模块(代码)

如下面的代码(VB6+SQL2000模式下),我是用VB6写的,如何修改成VB2010的(VB2010+SQL2008),哪位大侠有代码,发一个啊!十分感谢。

Public Function QueryExt(ByVal TmpSQLstmt As String) As ADODB.Recordset '--执行数据库查询语句
    Dim rst As New ADODB.Recordset
    set cnn = New ADODB.Connection
        With cnn
         .Provider = "sqloledb"
         .ConnectionString = Conn
         .ConnectionTimeout = 10
         .Open
        End With   
     Set rst.ActiveConnection = cnn
    rst.CursorType = adOpenKeyset
     rst.LockType = adLockOptimistic
    rst.Open TmpSQLstmt
    Set QueryExt = rst
End Function
搜索更多相关主题的帖子: 如何 数据库查询 
2013-05-26 00:54



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-408026-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024558 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved