RddFieldInfo Constructor (String, DbFieldType, Long, Long, Long, DBFFieldFlags) | |
Construct a RddFieldInfo object.
Namespace:
XSharp.RDD.Support
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax CONSTRUCTOR(
sName AS STRING,
nType AS DbFieldType,
nLength AS LONG,
nDecimals AS LONG,
nOffSet AS LONG := -1,
nFlags AS DBFFieldFlags := DBFFieldFlags.None
)
public RddFieldInfo(
string sName,
DbFieldType nType,
int nLength,
int nDecimals,
int nOffSet = -1,
DBFFieldFlags nFlags = DBFFieldFlags.None
)
Request Example
View SourceParameters
- sName
- Type: String
Name - nType
- Type: DbFieldType
Type - nLength
- Type: Long
Length 'DBF style', so length in Buffer - nDecimals
- Type: Long
Number of decimals. - nOffSet (Optional)
- Type: Long
Offset in record buffer (optional) - nFlags (Optional)
- Type: DBFFieldFlags
Flags (optional)
See Also