Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SAP Sybase SQL Anywhere 16.0 (中文) » SQL Anywhere 服务器 - SQL 用法 » 远程数据访问 » 用于远程数据访问的服务器类 » 服务器类 ODBC

 

Microsoft FoxPro (Microsoft 3.51.171300)

您可以将多个 FoxPro 表一起存储在一个 FoxPro 数据库文件 (.dbc) 中;也可以将每个表存储在各自的 .dbf 文件中。使用 .dbf 文件时,请确保文件名已填充到位置字符串中;否则,将使用 SQL Anywhere 的启动目录。

CREATE TABLE fox1 (a int, b char(20))
AT 'foxpro;d:\\pcdb;;fox1';

如果您在 ODBC 驱动程序管理器中选择了 [Free Table Directory] 选项,则此语句会创建一个名为 d:\pcdb\fox1.dbf 的文件。