using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Data.OleDb;using System.Data;using Syst...
分类:
其他好文 时间:
2015-01-04 16:36:17
阅读次数:
200
net中导入2013excel的故障解决办法。修改导入excel的连接字符串string strCon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filepath + ";Extended Properties='Excel 12.0;...
分类:
Web程序 时间:
2015-01-01 16:03:48
阅读次数:
145
数据库发生System.Data.OleDb.OleDbException: 由于数据移动,未能继续以 NOLOCK 方式扫描错误,进行修复。
分类:
移动开发 时间:
2015-01-01 15:55:57
阅读次数:
275
Solution 1:You are getting this error because the Jet driver you have installed need 32 bit OS & system to function, Here’s how to update to a new 64-...
分类:
数据库 时间:
2014-12-30 23:18:08
阅读次数:
326
/// /// 执行SQL语句,返回影响的记录数 /// /// SQL语句 /// 影响的记录数 public static int ExecuteSql(string SQLString, params OleDbPara...
分类:
数据库 时间:
2014-12-30 00:21:53
阅读次数:
173
原文: 在 SQL Server 中查询EXCEL 表中的数据遇到的各种问题 SELECT * FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0','Data Source="D:\KK.xls";User ID=Admin;Password=;Extend...
分类:
数据库 时间:
2014-12-26 21:32:04
阅读次数:
316
原文:未在本地计算机上注册“microsoft.ACE.oledb.12.0”提供程序解决办法错误信息:未在本地计算机上注册“microsoft.ACE.oledb.12.0”提供程序。
解决办法:
去http://download.microsoft.com/download/7/0/3/703f...
分类:
数据库 时间:
2014-12-26 20:08:45
阅读次数:
245
Window2003 64位IIS连接ACCESS报错“Microsoft.Jet.OLEDB.4.0”问题 由于64位操作系统不支持Microsoft OLE DB Provider for Jet驱动程序,也不支持更早的Microsoft Access Driver (*.mdb)方式连接。所以...
分类:
数据库 时间:
2014-12-26 10:54:05
阅读次数:
180
找出卡号重复的select card from krs group by card having count(*)>1A.导入ExcelSELECT * FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0','Data Source="c:\a.xls";Us...
分类:
数据库 时间:
2014-12-24 17:51:21
阅读次数:
170
这个样例,因为在ADO.net入门已经专门学了,再次进行复习 一下。主要掌握连接字串的情况。过程就是:1、引用System.Data.SqlClient。而Access中引用 的是System.Data.OleDB.所以是有差别的2、相关连接、适配器、数据集。3、DataGridView绑定显示。连...
分类:
数据库 时间:
2014-12-24 13:26:33
阅读次数:
165