FireDAC.Phys.MongoDBWrapper.TMongoDatabase.Collections

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

property Collections[const AColName: String]: TMongoCollection read GetCollectionsProp; default;

C++

__property TMongoCollection* Collections[const System::UnicodeString AColName] = {read=GetCollectionsProp/*, default*/};

プロパティ

種類 可視性 ソース ユニット
property public
FireDAC.Phys.MongoDBWrapper.pas
FireDAC.Phys.MongoDBWrapper.hpp
FireDAC.Phys.MongoDBWrapper TMongoDatabase


説明

データベース内の指定された名前コレクション

データベース オブジェクトは、この共有コレクション オブジェクトを所有します。GetCollection を使用すると、自分で破壊しなければならない、プライベートのコレクション オブジェクトを取得することができます。

Collections からコレクションを読み込むたびに、同じ共有オブジェクトを取得し、指定されたコレクションを指すために更新されます。例:

Delphi:

A := MyDatabase.Collections['a'];
B := MyDatabase.Collections['b'];
// A.Name = 'b'

C++:

TMongoCollection* A = MyDatabase->Collections["a"];
TMongoCollection* B = MyDatabase->Collections["b"];
// A->Name == "b"

関連項目