DbFileSpec Constructor (String, String, Array) | |
Instantiates a DBFileSpec object and fills its instance variables with DBF information.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VORDDClasses (in XSharp.VORDDClasses.dll) Version: 2.19
Syntax 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
)
Request Example
View SourceParameters
- cFullPath
- Type: String
The drive, path and file name of the DBF file. - cDriver
- Type: String
The RDD used to instantiate the DBFileSpec. - _aRDDs
- Type: Array
The 1-D array of 'hidden' RDDs required to open a DBF file, such as DBFMEMO.
Return Value
Type:
A DBFileSpec object.
Examples 1oDB1 := DBFileSpec{ "C:\TEST\TEST.DBF" }
2oDB2 := DBFileSpec{}
3oDB2:FullPath := "C:\TEST\TEST.DBF"
See Also