VTable Class: Binary Fields Creation
Declaration:
CreateFixedBinaryField( inName as String, inMaxLength as Integer) as VFixedBinary CreateVarBinaryField( inName as String, inMaxLength as Integer) as VVarBinary
Parameters:
- inName - The name of the field.
- inMaxLength - The maximum length ( in bytes )
Description:
Create a fixed or variable size binary field.
You need to specify the maximum length in bytes.
Example:
fldStyle = tblPerson.FixedBinaryField(
"nameStyle", 40, EVFlags.fNullable + EVFlags.fIndexed )