DbFileSpec Constructor | |
Instantiates a DBFileSpec object and fills its instance variables with DBF information.
Namespace:
VO
Assembly:
VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
cFullPath,
cDriver,
_aRDDs
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public DbFileSpec(
Usual cFullPath = default,
Usual cDriver = default,
Usual _aRDDs = default
)
Request Example
View SourceParameters
- cFullPath (Optional)
- Type: Usual
The drive, path and file name of the DBF file. - cDriver (Optional)
- Type: Usual
The RDD used to instantiate the DBFileSpec. - _aRDDs (Optional)
- Type: Usual
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