using System; using System.Data; using System.Data.OleDb; using System.Data.SqlClient; using System.IO; using System.Text; using System.Web; using Sys... ...
分类:
Web程序 时间:
2018-03-01 19:51:39
阅读次数:
217
title: 数据更新接口与延迟更新 tags: [OLEDB, 数据库编程, VC++, 数据库] date: 2018 02 12 14:29:35 categories: windows 数据库编程 keywords: OLEDB, 数据库编程, VC++, 数据库,数据库数据更新, 延迟提交 ...
分类:
其他好文 时间:
2018-02-12 18:33:01
阅读次数:
193
Access数据库的连接,2000和2007版本有差别.Access2000的连接字符串为:str.Format(TEXT("Provider=Microsoft.Jet.OLEDB.4.0;
&n
分类:
数据库 时间:
2018-02-06 12:51:10
阅读次数:
219
title: SQL语句执行与结果集的获取 tags: [OLEDB, 数据库编程, VC++, 数据库] date: 2018 01 28 09:22:10 categories: windows 数据库编程 keywords: OLEDB, 数据库编程, VC++, 数据库,执行SQL, 获取结 ...
分类:
数据库 时间:
2018-01-28 18:21:29
阅读次数:
240
title: 事务对象和命令对象 tags: [OLEDB, 数据库编程, VC++, 数据库] date: 2018 01 21 09:22:10 categories: windows 数据库编程 keywords: OLEDB, 数据库编程, VC++, 数据库 上次说到数据源对象,这次接着说 ...
分类:
其他好文 时间:
2018-01-21 13:44:56
阅读次数:
189
title: OLEDB数据源 date: 2018 01 12 21:42:37 tags: [OLEDB, 数据库编程, VC++, 数据库] categories: windows 数据库编程 keywords: OLEDB, 数据库编程, VC++, 数据库 数据源在oledb中指数据提供者 ...
分类:
数据库 时间:
2018-01-13 01:16:38
阅读次数:
222
using System;using System.Collections.Generic;using System.Data;using System.Data.OleDb;using System.IO;using System.Linq;using System.Text;using Syst ...
分类:
数据库 时间:
2018-01-11 15:46:17
阅读次数:
243
Microsoft.Jet.OLEDB.4.0是Microsoft Jet引擎,这适用于2003版本,而在2007中,微软对其旗下 Access 与 Excel 的主要文件格式进行修改,并且重命名为 .accdb(Access 2007 数据库文件)与 .xlsx(Excel 2007 文件),因此 ...
分类:
其他好文 时间:
2018-01-08 12:15:56
阅读次数:
189
<% Dim db,connStr,conn,sql,rs '数据库文件名 db = "test.mdb" '数据库连接字符串 connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath(db) '创建连接co ...
分类:
数据库 时间:
2018-01-03 17:24:24
阅读次数:
171