FireDAC.Phys.MongoDBWrapper.TMongoInsert.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AEnv: TMongoEnv; AOwningObj: TObject; const ARunOper: TRunOper); overload;
constructor Create(AEnv: TMongoEnv); overload;

C++

__fastcall TMongoInsert(TMongoEnv* AEnv, System::TObject* AOwningObj, const _di_TRunOper ARunOper)/* overload */;
__fastcall TMongoInsert(TMongoEnv* AEnv)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
FireDAC.Phys.MongoDBWrapper.pas
FireDAC.Phys.MongoDBWrapper.hpp
FireDAC.Phys.MongoDBWrapper TMongoInsert

Description

Creates an instance of TMongoInsert.

Use the signature that only accepts a MongoDB environment object to create insert builder objects that you can use with a regular coding style.

Do not use the signature that accepts an instance of TRunOper. TMongoCollection.Insert uses this signature internally when you use a fluent coding style.

See Also