| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2141 人关注过本帖
标题:求: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
快速回复:求:VB2010中查询SQL2008数据库,查询并返回记录集的查询通用模块(代 ...
数据加载中...
 
   



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

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