代码:using System;using System.Data;using System.Configuration;using System.Data.OleDb;using ahwildlife.Utils;/// /// AccessHelper 的摘要说明/// public class...
分类:
数据库 时间:
2014-10-13 17:49:29
阅读次数:
210
在.NET中可以用OleDb(Object linking and embeding DataBase)来访问Excel 1 using System; 2 using System.Data; 3 using System.Windows.Forms; 4 using System.Data.Ol...
分类:
数据库 时间:
2014-10-09 02:14:57
阅读次数:
194
今天在用OleDb方式读取一个CSV文件的时候,发现得到的文本不是通常用逗号隔开的。而是用Tab制表符来隔开的。OrderID OrderName1 12 23 3然后去MSND查询了了下发现有针对Tab制表符的指定参数:TabDelimited 文件被当做制表符分隔的...
分类:
数据库 时间:
2014-09-27 23:13:00
阅读次数:
362
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.O...
分类:
数据库 时间:
2014-09-26 18:05:28
阅读次数:
507
是自己装的64位Windows 7系统的原因,默认64位环境下,IIS应用程序池未启用32位应用程序,我们只需要启用一下就可以了。打开IIS 7,定位到“应用程序池”,然后选择使用OleDB方式连接数据库的程序池,然后将启用32位应用程序设置为True就可以了。
分类:
数据库 时间:
2014-09-25 00:19:27
阅读次数:
287
ADO.NET向.NET程序员公开数据访问服务的类,用于对MicrosoftSQLServer和XML等数据源进行访问,还提供对OLEDB和XML公开的数据源提供一致访问的方法。两种访问数据的模型:无连接模型(脱机)和连接模型(联机)。无连接将数据下载到客户机上,并在客户机上将数据封装到内存中,然后...
分类:
数据库 时间:
2014-09-24 00:37:55
阅读次数:
424
系统环境: win7 32位 access 2010 vs2010Microsoft .ACE. OLEDB .12.0是针对于access 2007的,下载2007 Office system 驱动程序:数据连接组件安装http://download.microsoft.com/downlo...
分类:
数据库 时间:
2014-09-22 17:16:42
阅读次数:
241
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=data\myAccess_db.accdb;Persist Security Info=False;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=data\jin...
分类:
数据库 时间:
2014-09-22 16:42:32
阅读次数:
190
using System.Data.OleDb; public DataView GetSata(string sqlcmd) { System.Data.Odbc.OdbcConnection conn = new System.Dat...
分类:
数据库 时间:
2014-09-18 09:45:33
阅读次数:
232
参考:How to read from an Excel file using OLEDB为了使用方便,我做成了工具类(OledbHelp.cs),好以后使用.注:连接字符串中,Provider=xx是从这个连接模仿,主要是考虑是否把第1行当成表头:http://www.connectionstri...
分类:
数据库 时间:
2014-09-17 20:23:02
阅读次数:
315