Data.DB.TParams

From RAD Studio API Documentation
Jump to: navigation, search

System.Classes.TCollectionSystem.Classes.TPersistentSystem.TObjectTParams

Delphi

TParams = class(TCollection)

C++

class PASCALIMPLEMENTATION TParams : public System::Classes::TCollection

Properties

Type Visibility Source Unit Parent
class public
Data.DB.pas
Data.DB.hpp
Data.DB Data.DB

Description

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