pebongo MongoDB 的 Delphi 驱动开源项目

我要开发同款
匿名用户2012年05月28日
110阅读
开发技术Delphi/Pascal
所属分类数据库相关、数据库驱动程序
授权协议MIT

作品详情

pebongo是MongoDB数据库的Delphi驱动接口。

示例代码:

//example #2 on bsonspec.orgvar  bson              : TBSONDocument;  item              : TBSONArrayItem;begin  bson := TBSONDocument.Create;  item := TBSONArrayItem.Create;  item.Items[0] := TBSONStringItem.Create( 'awesome' );  item.Items[1] := TBSONDoubleItem.Create( 5.05 );  item.Items[2] := TBSONIntItem.Create( 1986 );  bson.Values['BSON'] := item;  bson.SaveToFile( ExtractFilePath( Application.ExeName ) + 'hello.bson' );  bson.Free;//preliminary driver interfacevar  mongo             : TMongoConnection;  coll              : TMongoCollection;  cursor            : TMongoCursor;  i                 : integer;begin  mongo := TMongoConnection.Create;  memo1.lines.add( booltostr( mongo.Connected, true ) );  mongo.GetDatabase( 'tesdb' );  coll := mongo.GetCollection( 'things' );  cursor := coll.find( );  memo1.lines.add( inttostr( cursor.Count ) );  for i := 0 to cursor.Count - 1 do    memo1.lines.add( cursor.Result[i].ToString );//print as JSON  cursor.Free;  coll.Free;  mongo.Free;end;
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论