Chinaunix首页 | 论坛 | 博客
  • 博客访问: 541124
  • 博文数量: 119
  • 博客积分: 3167
  • 博客等级: 中校
  • 技术积分: 1215
  • 用 户 组: 普通用户
  • 注册时间: 2005-12-20 21:21
文章分类

全部博文(119)

文章存档

2015年(21)

2012年(4)

2011年(1)

2007年(11)

2006年(50)

2005年(32)

分类: 数据库开发技术

2006-01-10 23:53:10

vb 访问数据库

工程-> 引用 Microsoft Activex Data Objects 2.5 Library

module1.mod
Public Function getRec() As ADODB.Recordset
    On Error GoTo err
    Dim conn As ADODB.Connection
    Dim rs As ADODB.Recordset
    Set conn = New ADODB.Connection
    With conn
        .Provider = "sqloledb.1"
        .ConnectionString = "integrated security = sspi;" & _
                            "data source = 'yd04'; inital catalog = 'pubs';" & _
                            "user id = 'sa' ; password = ''"
        .Open
    End With
    Set rs = New ADODB.Recordset
    With rs
        .ActiveConnection = conn
        .Source = "select * from jobs;"
        .CursorType = adOpenKeyset
        .LockType = adLockOptimistic
        .Open
    End With
    Set getRec = rs
    Exit Function
err:
    Set getRec = Nothing
    MsgBox "´connection error"
End Function

form1
Dim dbrs As ADODB.Recordest
Private Sub Command1_Click()
    Set dbrs = getRec()
    Text1.Text = dbrs.Fields(0).Value
    test2.Text = dbrs.Fields(1).Value
    test3.test = dbrs.Fields(3).Value
   
    MsgBox dbrs.Fields.Count
   
End Sub

阅读(2532) | 评论(3) | 转发(0) |
0

上一篇:trap的使用

下一篇:vb中读写文本文件

给主人留下些什么吧!~~