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

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

using Delphi TMongoUpdate to locate a Mongodb document using the default Mongodb ObjectId

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...