Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm using Delphi 10.3 in order to access a MongoDB database. I'm trying to update a specific Mongo document using the ObjectId and having a hard time figuring out the exact syntax:

var
  MyMongoCollection: TMongoCollection;
  MyMongoUpdate: TMongoUpdate;
begin

  MyMongoCollection := FMongoDB.Collections['suppliers'];
  MyMongoUpdate := TMongoUpdate.Create(FEnv);

  MyMongoUpdate.Match('{_id : ObjectId("600aebbc329bc11e440063d1")}');
  MyMongoUpdate.Modify('{"name": "new supplier name"}');
  ...

I have tried all combinations to no avail. Can anyone help?

question from:https://stackoverflow.com/questions/65856849/using-delphi-tmongoupdate-to-locate-a-mongodb-document-using-the-default-mongodb

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...