ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 12190|回复: 4

[分享] 分享解决方法:用于查看已链接的 Micorosoft Excel 工作表的连接,已经失去

[复制链接]

TA的精华主题

TA的得分主题

发表于 2013-9-21 22:57 | 显示全部楼层 |阅读模式
本帖最后由 bluestone_yang 于 2013-9-21 23:00 编辑

问题概述:

本人通过ADO链接操作EXCEL,第一次运行无误,第二次出现以下问题:“错误:-2147467259(80004005)用于查看已链接的 Micorosoft Excel 工作表的连接,已经失去。


QQ截图未命名.jpg


初始状态下的语句如下(当然略过了很多部分了):
  1. Dim adoCN As Object
  2. Dim sqlP$, sqlS$, sqlI_Initial$, sqlI_Final$, sql$
  3. Set adoCN = CreateObject("adodb.connection")
  4. adoCN.Open "provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;imex=1;hdr=yes';data source=" & Workbooks(wbI).FullName

  5.         sqlP = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Purchase'as [Transaction Type],[Bill Date] from [" & shP & "$] where [Bill Date]>='" & firstDay & "' and [Bill Date]<='finalDay'"
  6.         sqlS = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Sales' as [Transaction Type],[Bill Date] from [" & shS & "$] where [Bill Date]>='" & firstDay & "' and [Bill Date]<='finalDay'"
  7. sqlI_Initial = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Initial Invetory'as [Transaction Type],[Inventory Date] from [" & shI & "$] where [Inventory Date]='" & firstDay & " '"
  8.   sqlI_Final = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Final Invetory' as [Transaction Type],[Inventory Date] from [" & shI & "$] where [Inventory Date]='" & finalDay & " '"
  9. sql = sqlP & "union all " & sqlS & "union all " & sqlI_Initial & "union all " & sqlI_Final

  10. Sheets("Process").[A2].CopyFromRecordset adoCN.Execute(sql)
  11. Dim objPivotCache As Object
  12. Set objPivotCache = Workbooks(wbI).PivotCaches.Add(SourceType:=xlExternal)
  13. Set objPivotCache.Recordset = adoCN.Execute(sql)
  14. objPivotCache.CreatePivotTable TableDestination:=Workbooks(wbI).Sheets("Balance").Range("A3"), TableName:="Balance"
复制代码
第一次运行没问题,第二次就出现上面的情况了

解决方法很简单
添加
  1. adoCN.Close
复制代码
然后就可以了,最后如下:
  1. Dim adoCN As Object
  2. Dim sqlP$, sqlS$, sqlI_Initial$, sqlI_Final$, sql$
  3. Set adoCN = CreateObject("adodb.connection")
  4. adoCN.Open "provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;imex=1;hdr=yes';data source=" & Workbooks(wbI).FullName

  5.         sqlP = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Purchase'as [Transaction Type],[Bill Date] from [" & shP & "$] where [Bill Date]>='" & firstDay & "' and [Bill Date]<='finalDay'"
  6.         sqlS = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Sales' as [Transaction Type],[Bill Date] from [" & shS & "$] where [Bill Date]>='" & firstDay & "' and [Bill Date]<='finalDay'"
  7. sqlI_Initial = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Initial Invetory'as [Transaction Type],[Inventory Date] from [" & shI & "$] where [Inventory Date]='" & firstDay & " '"
  8.   sqlI_Final = "select [Organization Name],[Distributor Name],[Distributor Code],[Client Code],[Distributor ProductCode],[Distributor ProductName],[Distributor Product Unit],[Distributor Product Quantity],'Final Invetory' as [Transaction Type],[Inventory Date] from [" & shI & "$] where [Inventory Date]='" & finalDay & " '"
  9. sql = sqlP & "union all " & sqlS & "union all " & sqlI_Initial & "union all " & sqlI_Final

  10. Sheets("Process").[A2].CopyFromRecordset adoCN.Execute(sql)
  11. Dim objPivotCache As Object
  12. Set objPivotCache = Workbooks(wbI).PivotCaches.Add(SourceType:=xlExternal)
  13. Set objPivotCache.Recordset = adoCN.Execute(sql)
  14. objPivotCache.CreatePivotTable TableDestination:=Workbooks(wbI).Sheets("Balance").Range("A3"), TableName:="Balance"


  15. adoCN.Close
  16. Set adoCN = Nothing
复制代码



不清楚能否解决所有的这类情况,至少我的问题解决了;
网上搜索的一下,如果这个方法不能解决,大家请移步参考:
[紧急求助] VBA使用SQL查询,ADODB连接出现莫名错误,救命啊!
[求助] excel通过ado操作工作表的问题
请教:recordset超多次重复OPEN占用内存的问题

TA的精华主题

TA的得分主题

发表于 2014-6-13 11:56 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
谢谢分享!

TA的精华主题

TA的得分主题

发表于 2017-3-7 15:38 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2023-10-25 16:24 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-2-29 17:03 | 显示全部楼层
Fungling 发表于 2023-10-25 16:24
没用。不是这个原因

我也遇到一样的情况,也的确不是CLOSE连接能解决,原因是数据源的格式错误导致的,可以尝试检查数据源的数据格式是否有异常的情况
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-18 13:35 , Processed in 0.031279 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表