微软老子信了你的邪! 试了各种办法没有效果 网友解决办法一: The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine. 或者 未在本地计算机上注册“Microsoft.Jet.Oledb.4.0”提供程序 原因:没有64位的Microsoft.Jet.Oledb.4.0提供程序 解决:在编译软件时将目标平台(CPU)设置为X86. 方法: C# 项目属性->生成->目标平台,设置为X8…
百度的处理结果: 作者:LisenYang http://blog.csdn.net/lisenyang/article/details/52106492 这篇博文里面说的,默认设置修改[启动32应用程序]为true没什么用,还是得高级设置那边修改的.当然如果是新建一个应该是可以的,毕竟默认设置就相当于初始化的意思了. 今天上传excel的时候,碰到个问题, The 'Microsoft.Jet.Oledb.4.0' provider is not registered on the local…
报错提示:"the microsoft.jet.oledb.4.0 provider is not registered on the local machine" 错误起因:winfrom项目在32位系统里面创建,由于创建解决方案 Platform默认设置为Any Cpu,所以在64位系统下打开解决方案的时候Platform设置默认为为Any Cpu,正常情况下应该在64位系统下,开启32cpu模式,即Active(*86). 注意事项:Platform属性修改后,各个类库协同都应修…
在一台Win7 64位的操纵系统上部署的C# Web系统,操作Excel,批量导入数据,报错,提示错误信息: The ‘Microsoft Jet OLEDB 4.0 Provider' is not registered on the local machine 网上查找原因和解决方案,微软只提供了在32位Win7上的驱动,而未提供64位Win7的驱动,解决办法: 启动IIS,设置应用系统所用的应用程序池,如下图: 选中该Application Pool,然后点右侧的Advanced Sett…
正如以下msdn论坛所述,Microsoft.Jet.OLEDB.4.0只有32bit,所以我们必须compile application to x86 platform. http://social.msdn.microsoft.com/Forums/en-US/45aa44dd-0e6f-42e5-a9d6-9be5c5c8fcd1/the-microsoftjetoledb40-provider-is-not-registered-on-the-local-machine?forum=ad…
错误描述:The Microsoft.ACE. Oledb.12.0 provider was not registered on the local computer 最近在Web项目中做一个自动生成Excel→下载→修改→上传→生成json格式文件的功能. 本地一切都顺利,在部署到IIS服务器后,运行发现挂了. 本人代码: #region 读取Excel中的数据 /// <summary> /// 读取Excel中的数据 支持表头(.xlsx) 不支持表头(.xls) /// &…
问题描述: 修改一个工具功能为读取excel文件中的数据(xls) 本机(windows server 2003 32位) 调试运行正常,部署到服务器(windows server 2003 64位) 提示错误:The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine 处理结果: 考虑到服务器没有安装office初步判断是缺少驱动程序之类的了. 上网搜索了一堆解决方案. 最终在服务器上安装了64位…
When you try to import Excel 2007 or later “.xlsx” files into an SQL Server 2008 database you may get the following error mesage : The ‘Microsoft.ACE.OLEDB.12.0′ provider is not registered on the local machine. (System.Data) To solve this problem ins…
导出数据时报错: 如果你是导出office 2007格式 TITLE: SQL Server Import and Export Wizard ------------------------------ The operation could not be completed. ------------------------------ ADDITIONAL INFORMATION: The 'Microsoft.ACE.OLEDB.12.0' provider is not registe…
在开发中用到Microsoft.ACE.OLEDB.12.0,但是,出现了Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine 之前都是用得好好的,还用了好多的时间去找信息,最后,我们只要在开发时选正确的发布平台就解决了,原因只是我们要布置到X64的服务器上,但是Microsoft.ACE.OLEDB.12.0还没有X64的版本. http://www.microsoft.com/downl…
环境: Win7 64位 + VS2005 + Office2013 64位 现象:程序为一个Excel导入程序,导入时报「'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine error」的错误. 解决方法:下载并安装AccessDatabaseEngine.exe后该现象解决.…
笔者在项目中做做了一个从Excel表格中导入数据的模块.大体上asp.net项目中导入Excel大体分成三类: 1)采用c#内置方案System.Data.OleDb(限制较小, 通用) 2)采用Excel的COM组件(会有版本问题) 3)采用伪Excel文件.即使用文本流的方式根据需求自己定义数据格式.同时在服务端进行反格式化 笔者采用的是方案一.相关联开发环境如下: Windows 7(x64) Visual Studio 2010 方案中使用的代码: public sealed class…