IBX.IBQuery.TIBXParams

From RAD Studio API Documentation
Jump to: navigation, search

Data.DB.TParamsSystem.Classes.TCollectionSystem.Classes.TPersistentSystem.TObjectTIBXParams

Delphi

TIBXParams = Class(TParams)

C++

class PASCALIMPLEMENTATION TIBXParams : public Data::Db::TParams

Properties

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

Description

TParams manages a list of field parameters.

IBX.IBQuery.TIBXParams inherits from Data.DB.TParams. All content below this line refers to Data.DB.TParams.

TParams manages a list of field parameters.

Datasets that represent queries and stored procedures use TParams objects to represent the parameters of their query or stored procedures. Client datasets use TParams to represent parameters they pass to a source dataset.

Note: ADO-based datasets do not use TParams objects to represent parameters. They use the TParameters class instead.

Use the properties and methods of TParams to:

  • Access a specific field parameter.
  • Add or delete field parameters from the list.
  • Get or set the values of individual field parameters.
  • Compare field parameters.
  • Iterate through all field parameters.
  • Copy a set of field parameters to another parameter list.

See Also