Visual Fox Pro、ODBC - 我在 Visual Studio 2010 中看不到 .DBF 表
我正在与使用 ODBC 数据源 - Visual Fox Pro 驱动程序的应用程序集成。在其目录结构中,我有两个目录(DANE 和 TRANS),其中包含 .DBF 文件。当我使用 Visual Studio 2010 服务器资源管理器时 ->连接到 DATA .DBF 文件的数据连接,一切正常。当我尝试使用 TRANS 目录时会出现问题 - 我没有看到任何表(当我使用 DBF 查看器时 - 大约有 30-40 个表)。当我尝试使用连接字符串连接到它们时:
Provider=vfpoledb;Dsn=Visual FoxPro Tables;Data source=c:\Softech\G_POS\DANE
Provider=vfpoledb;Dsn=Visual FoxPro Database;Data source=c:\Softech\G_POS\TRANS
我可以毫无问题地从 DANE 获取数据。在 TRANS 上,我可以连接到数据库,但当我尝试获取数据时出现异常(OleDbException) - 无法读取文件 c:\Softech\G_POS\TRANS\"name of table".dbf Norbert
“Visual FoxPro Database”是目标的抽象名称。这不是数据库,只是我自定义的数据源名称
I'm making integration with application that is using ODBC Data Source - Visual Fox Pro Driver. In its dirrectory structure I've got two dirrectories (DANE and TRANS) which contains .DBF files. When I am using Visual Studio 2010 Server Explorer -> Data Connections to connect to DATA .DBF files, everything work fine. The problem occurs when I'm trying to use TRANS dirrectory - I don't see any tables (When I am using DBF Viewer - there are around 30-40 tables). When I try to connect to them using connection strings :
Provider=vfpoledb;Dsn=Visual FoxPro Tables;Data source=c:\Softech\G_POS\DANE
Provider=vfpoledb;Dsn=Visual FoxPro Database;Data source=c:\Softech\G_POS\TRANS
I can get data from DANE without problem. On TRANS I can connect to database, but I've god exception when I try to get data (OleDbException) - Can't read file c:\Softech\G_POS\TRANS\"name of table".dbf
Norbert
"Visual FoxPro Database" is abstract name of destination. That's not a database, just my custom name of data source
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题出在指定的 DSN 上。默认的“Visual FoxPro 数据库”ODBC 数据源假定在数据源或 SourceDB 属性中指定了数据库容器 (DBC)。这相当于 SourceType 属性,如 SourceType=DBC 中所示。
您应该改用“Visual FoxPro Tables”DSN 或将 DBC 的文件名附加到“数据源”属性。
另外,根据 Foxpro Ole Db 文档,您应该使用“数据源”或 DSN,但不能同时使用两者。
The problem comes from the DSN specified. The default "Visual FoxPro Database" ODBC Data Source assumes a Database Container (DBC) is specified in the Data Source or SourceDB attributes. This equates to the SourceType attribute, as in SourceType=DBC.
You should switch to using the "Visual FoxPro Tables" DSN or appending the filename for the DBC to the Data Source attribute.
Also, according to the Foxpro Ole Db documentation, you should either use "Data Source" or DSN but not both.
也许是一个愚蠢的答案,
你的连接字符串不相等。您在第二个连接字符串中使用“数据库”,但您正在谈论表..
Greatz
Maybe a dumb answer,
Your connection strings are not equal. You use "Database" in the second connection string but your'e talking about tables..
Greatz