DbFileSpec 构造函数 (String, String, __Array) | |
实例化一个 DBFileSpec 对象,并填充其实例变量与 DBF 信息。
命名空间:
XSharp.VO.SDK
程序集:
XSharp.VORDDClasses (在 XSharp.VORDDClasses.dll 中) 版本:2.22 GA
语法 CONSTRUCTOR(
cFullPath AS STRING,
cDriver AS STRING,
_aRDDs AS ARRAY
)
public DbFileSpec(
[DefaultParameterValueAttribute("", 0)] string cFullPath,
[DefaultParameterValueAttribute("", 0)] string cDriver,
[DefaultParameterValueAttribute(null, 0)] __Array _aRDDs
)
查看代码参数
- cFullPath
- 类型:String
DBF 文件的驱动器、路径和文件名。 - cDriver
- 类型:String
用于实例化 DBFileSpec 的 RDD。 - _aRDDs
- 类型:__Array
打开 DBF 文件所需的1-D数组的“隐藏” RDDs,如 DBFMEMO。
返回值
类型:
一个 DBFileSpec 对象。
示例 1oDB1 := DBFileSpec{ "C:\TEST\TEST.DBF" }
2oDB2 := DBFileSpec{}
3oDB2:FullPath := "C:\TEST\TEST.DBF"
参见