FireDAC.Phys.MongoDBWrapper.TMongoDatabase.DropCollection
Delphi
procedure DropCollection(const AName: String; AIgnoreObjNotExists: Boolean = False);
C++
void __fastcall DropCollection(const System::UnicodeString AName, bool AIgnoreObjNotExists = false);
Eigenschaften
Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
---|---|---|---|---|
procedure function |
public | FireDAC.Phys.MongoDBWrapper.pas FireDAC.Phys.MongoDBWrapper.hpp |
FireDAC.Phys.MongoDBWrapper | TMongoDatabase |
Beschreibung
Löscht die Sammlung mit dem angegebenen Namen aus der Datenbank.
Wenn die Datenbank keine Sammlung mit dem angegebenen Namen enthält, bestimmt der Wert von AIgnoreObjNotExists
das Verhalten von DropCollection:
- Wenn
AIgnoreObjNotExists
False
ist, löst DropCollection eine Exception aus. - Wenn
AIgnoreObjNotExists
True
ist, löst DropCollection keine Exception aus.