mogo-d-driver是MogoDB的D语言开发包。
示例代码:
/**make:dmd-versio=D2-Iexportlibmogod-D2.aexample/coect.d**-Iexport:pathtothefoldercotaiigthefiles:*bso.di,bso_h.di,md5.di,mogo.di,mogo_h.di,myversio.di,et.di,umbers.di*/moduleexample;importstd.stdio;privateimportmogod.mogo_h;privateimportmogod.mogo;privateimportmogod.bso_h;privateimportmogod.bso;voidmai(char[][]args){mogoco;strigcollectio="test";strighost="localhost";itport=27017;char*col=cast(char*)collectio;char*s=cast(char*)(collectio~".simple");try{mogo_coect(&co,host,port);writel("coecttomogodb[",host,":",port,"]sucessful");mogo_set_op_timeout(&co,1000);}catch(Exceptioex){writel("failedtocoecttomogodb,err=",ex.msg);}}
评论