f2s_column_treated_as_lob¶
Applies to: Oracle, MS SQL, MySql/MariaDB, PostgreSQL Drivers
Syntax
**There is no set_attribute. This attribute is read only.**
get_attribute f2s_column_treated_as_lob of {FileNumber} {FieldNumber} to {variable}
Parameter |
Description |
---|---|
FileNumber |
Number of the file (filename.File_Number) |
FieldNumber |
Number of thje field |
variable |
Boolean variable. If true, then the field is a large object field (lob) otherwise it is not. |
Description
This read only attribute returns a boolean indicating whether the FieldNumber of the file is a Large Object (LOB) datatype. Large object datatypes are things like XML, Binary, ect.
Example
get_attribute
Boolean bIsLOB
Integer iField
Get_FieldNumber Customer.Customer_Number to iField
Get_Attribute f2s_column_treated_as_lob of Customer.File_Number iField to bIsLOB
Replaces: DF_FIELD_IS_LOB