Data.Win.ADODB.TParameters

From RAD Studio API Documentation
Jump to: navigation, search

System.Classes.TOwnedCollectionSystem.Classes.TCollectionSystem.Classes.TPersistentSystem.TObjectTParameters
[–] Properties
Type: class
Visibility: public
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: Data.Win.ADODB

Delphi

TParameters = class(TOwnedCollection)

C++

class PASCALIMPLEMENTATION TParameters : public System::Classes::TOwnedCollection

Description

TParameters manages a collection of parameters.

Use TParameters to manage a collection of TParameter objects for an object that uses field parameters. For example, TADOStoredProc objects and TADOQuery objects use TParameters objects (in properties named Parameters) to create and access their parameters.

Use the properties and methods of TParameters to:

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

See Also