API:IBX.IBCustomDataSet.TIBStringField

From RAD Studio API Documentation
Jump to: navigation, search

Data.DB.TWideStringFieldData.DB.TStringFieldData.DB.TFieldSystem.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTIBStringField

Delphi

TIBStringField = class(TWideStringField)

C++

class PASCALIMPLEMENTATION TIBStringField : public Data::Db::TWideStringField

Properties

Type Visibility Source Unit Parent
class public
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet IBX.IBCustomDataSet

Description

TWideStringField represents a large string field in a dataset.

IBX.IBCustomDataSet.TIBStringField inherits from Data.DB.TWideStringField. All content below this line refers to Data.DB.TWideStringField.

TWideStringField represents a large string field in a dataset.

TWideStringField encapsulates the fundamental behavior common to wide string fields. Wide string fields are similar to simple string fields except that their storage capacity is virtually unlimited and the server specifically returns the field as wide string and not string. An example of a wide string field is the Unicode field in Microsoft SQL Server. In all other ways, wide string fields serve the same purpose as string fields.

If you use the Fields editor at design time to create a persistent field component for the wide string field, you can access it by name at runtime. When using dynamic field components, you can access the TWideStringField instance using the dataset's Fields property or FieldByName method.

See Also