zoukankan      html  css  js  c++  java
  • C# Access2003/2007 连接字符串总结

    连接 Access 2007 的操作方法
    //无密码的连接字符串
    stringconStr = "Provider=Microsoft.Ace.OleDb.12.0;";
    conStr += @"Data Source=E:数据库XiaoZhen.accdb;";
    conStr += "Persist Security Info=False;";
    
    //有密码的连接字符串
    stringconStr = "Provider=Microsoft.Ace.OleDb.12.0;";
    conStr += @"Data Source=E:数据库XiaoZhen.accdb;";
    conStr += "Jet OleDb:DataBase Password='829321';";
    
    连接 Access 2003的操作方法
    
    //无密码的连接字符串
    stringconStr = "Provider=Microsoft.Jet.OleDb.4.0;";
    conStr += @"Data Source=E:数据库XiaoZhen.mdb;";
    conStr += "Persist Security Info=False;";
    
    //有密码的连接字符串
    stringconStr = "Provider=Microsoft.Jet.OleDb.4.0;";
    conStr += @"Data Source=E:数据库XiaoZhen.mdb;";
    conStr += "Jet OleDb:DataBase Password='829321';";
    
    <connectionStrings>
    <add name="ConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;
    Data Source=F:TeacherSystemApp_Datadb.mdb;
    Jet OLEDB:Database Password=123"providerName="System.Data.OleDb"/>
    </connectionStrings>
    Private Sub CommandButton2_Click()
        Dim myCon      As New ADODB.Connection
        Dim myRst      As New ADODB.Recordset
        Dim myFileName As String
        Dim myTblName  As String
        Dim myKey      As String
        Dim dbFile As String
        Dim mySht      As Worksheet
        Dim i          As Long
        Dim j          As Long
        Dim sql As String
        sql = Space$(10000)
        Dim sql2 As String
        sql2 = Space$(10000)
        Dim sql3 As String
        sql3 = Space$(10000)
        
        TbName = Cells(1, 8)
        myFileName = "db1.mdb"
        dbFile = "C:Program FilesSWTOOLSTXT" & myFileName & ";"
        myCon.Open "Provider=MSDASQL;Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=" & dbFile
        
            '创建表
            sql = "CREATE TABLE [" & TbName & "]("
            For i = 2 To 255
                ZdName = Cells(2, i)
                ZdType = Cells(3, i)
                If i = 2 And ZdType = "int" Then ZdType = "AUTOINCREMENT"
                ZdNull = Cells(5, i)
                If ZdName = "" Then Exit For
                If ZdNull = "Y" Then ZdNull = "NULL" Else ZdNull = "NOT NULL"
                sql2 = " " & ZdName & "  " & ZdType & "  " & ZdNull & ","
                sql = sql & sql2
            Next
            sql = sql & "PRIMARY KEY ([ID]));"
            
            'MsgBox Len(sql)
            myCon.Execute sql
            '创建记录
            For j = 6 To 40000
                sql = ""
                Rows(j).Select
                If Cells(j, 2) = "" Then Exit For
                sql = sql & "insert into " & TbName & " values" & Chr(13)
                sql = sql & "('"
                For i = 2 To 255
                    ZdName = Cells(2, i)
                    ZdCont = Cells(j, i)
                    If ZdName = "" Then Exit For
                    If i = 2 Then
                        sql = sql & ZdCont
                    Else
                        sql = sql & "','" & ZdCont
                    End If
                Next
                sql = sql & "');" & Chr(13)
                myCon.Execute sql
            Next
        Set myCon = Nothing
    End Sub

    Win7x64bit下访问access mdb文件

    myCon.Open "Provider=MSDASQL;Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=" & dbFile

  • 相关阅读:
    自调用匿名函数和js的Module模式
    设置一天中不同时段的倒计时,计算时针和分针的夹角
    移动端web开发中对点透的处理,以及理解fastclick如何做到去除300ms延迟
    使用Fiddler改变线上js文件的引用路径
    Linux下常用设置文件和文件夹读写权限操作
    RESTful API
    mysql之load语句
    Django学习之点赞功能
    Django学习之网站图标
    python学习之pyenv
  • 原文地址:https://www.cnblogs.com/swtool/p/4045680.html
Copyright © 2011-2022 走看看