The Visual FoxPro OLE DB Provider vfpoledb.msm是什么

wwle 2011-09-05 12:00:39
http://www.microsoft.com/download/en/details.aspx?DisplayLang=en&id=14839

我要下载 The Visual FoxPro OLE DB Provider 但是下载列表中两个文件 哪个 VFPOLEDB.MSM 是什么?

The Visual FoxPro OLE DB Provider (VfpOleDB.dll) exposes OLE DB interfaces that you can use to access Visual FoxPro databases and tables from other programming languages and applications.
Quick details
Version: 1.2 Date Published: 5/16/2008
Language: English

Files in this download
The links in this section correspond to files available for this download. Download the files appropriate for you.

File Name Size


vfpoledb.msm 829 KB
VFPOLEDBSetup.msi
...全文
220 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
wwle 2011-09-05
  • 打赏
  • 举报
回复
谢谢楼上.谢谢~
十豆三 2011-09-05
  • 打赏
  • 举报
回复
你用这个
VFPOLEDBSetup.msi

vfpoledb.msm 是合并模块组,一般用于打包工具,请参考:
http://www.codejock.com/support/articles/com/general/g_2.asp
oledb读取dbf文件报错--“外部表不是预期的格式” 我的代码如下 string ole_connstring=String.Empty; ole_connstring = @"Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=dBASE IV;Data Source="+FilePath; OleDbConnection ole_conn = new OleDbConnection(ole_connstring); ole_conn.Open(); string insertsql="Insert into ["+tableName+"] (.......; OleDbCommand da=new OleDbCommand(insertsql,ole_conn); da.ExecuteNonQuery(); DBF版本问题,用VFP9的OLEDB即可 方法一: 进入VFP USE TT COPY TO NEWTT TYPE FOX2X 此方法是把表的文件版本转为新的VFP文件版本解决版本问题。 方法二: 升级JET 引擎到SP8,安装MDAC 2.8,到MS的网站去找 1、VFP9的驱动是最新的,各种版本的DBF均可读出; 2、你的连接字串是用JET的引擎,故要升级JET及MDAC; 3、所需文件在MS的网站均有下载。 方法三: 安装vfpoledb.exe(VFP9的OLEDB),在项目中引用Microsoft OLE DB Provider for FoxPro 7.0 Type Library 1.0,然后使用如下代码: OleDbConnection con = new OleDbConnection("Provider=VFPOLEDB.1;Data Source=D:\\2006工程\\南京建设质量监督站\\资料;Collating Sequence=MACHINE"); con.Open(); DataTable dtQY=new DataTable(); OleDbDataAdapter adapt=new OleDbDataAdapter(); adapt.MissingSchemaAction=MissingSchemaAction.AddWithKey; adapt.SelectCommand = new OleDbCommand("select * from 200512.DBF",con); adapt.Fill(dtQY); adapt.Dispose(); DataView dvQY = dtQY.DefaultView; dtQY.Dispose(); con.Close();

2,727

社区成员

发帖
与我相关
我的任务
社区描述
VFP,是Microsoft公司推出的数据库开发软件,用它来开发数据库,既简单又方便。
社区管理员
  • VFP社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧