zoukankan      html  css  js  c++  java
  • EXCEL页面数据快速写入SQL数据库

    将EXCEL数据存入SQL表, 一万行记录大概5秒
    Dim conn As New ADODB.Connection
    Dim CNN As New ADODB.Connection
    'Dim rst As New ADODB.Recordset
    
    Dim Sql As String
    Dim j, v As Integer
    
    
    Const cnnstr = "Provider = SQLOLEDB;" & _
    "Data Source = ip;" & _
    "Initial Catalog = apsdb;User ID =sa;Password = pw;"
    conn.Open cnnstr
    conn.Execute "truncate table tjnpg"
    
    Application.EnableEvents = False
    On Error GoTo ErrHandle
    
    j = ActiveSheet.Range("A65535").End(xlUp).Row
    
    v = Application.Version
    
    If v = 11 Then 'EXCEL2003
    CNN.Open "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=" & ThisWorkbook.FullName
    Else
    CNN.Open "Provider=Microsoft.Ace.OLEDB.12.0;Extended Properties=excel 12.0;Data Source=" & ThisWorkbook.FullName
    End If
    
    ' Sql = "select 部门,交期,产品号,生产订单号,旧物料号,物料描述 from [Sheet1$]"
    ' rst.Open Sql, CNN, adOpenKeyset, adLockOptimistic
    ' Debug.Print rst.RecordCount
    
    
    Sql = "INSERT INTO [odbc;Driver={SQL Server};" & _
    "Server=ip;Database=apsdb;" & _
    "UID=sa;PWD=pw].tjnpg " & _
    "select 部门,交期,产品号,生产订单号,旧物料号,物料描述 from [Sheet1$]"
    
    CNN.Execute Sql
    
    MsgBox "存入成功.", vbInformation, "诚益资讯"
    
    
    
    '关闭数据连接
    CNN.Close
    Set rst = Nothing
    Set CNN = Nothing
    
    conn.Close
    Set conn = Nothing
    
    GoTo ExitHandle
    
    ExitHandle:
    Application.EnableEvents = True
    Exit Sub
    ErrHandle:
    Application.EnableEvents = True
    MsgBox Err.Description, vbCritical, "诚益资讯"
    View Code
  • 相关阅读:
    .net正在终止线程异常
    js判断客户浏览器类型,版本
    C#中ToString格式大全
    WPF TextBox 搜索框 自定义
    C#:获取设备电量相关信息
    C#中的委托与事件并存的理由
    WPF中的Pack URI
    SQLServer中的数据库备份和还原
    使用Aspose.Cells读取Excel
    SQLServer存储过程事务用法
  • 原文地址:https://www.cnblogs.com/linmf/p/3796621.html
Copyright © 2011-2022 走看看