티스토리 뷰
Cargo.toml
------------------------------------------
[dependencies.mongodb]
version = "1.1.1"
default-features = false
features = ["sync"]
main.rs
--------------------------------------------
use mongodb::{
bson::{doc, Bson},
sync::Client,
};
fn main() -> mongodb::error::Result<()> {
let client = Client::with_uri_str("mongodb://localhost:27017")?;
let database = client.database("mobdw");
let collection = database.collection("books");
let docs = vec![
doc! { "title": "반도", "author": "George Orwell" },
doc! { "title": "Animal Farm", "author": "George Orwell" },
doc! { "title": "The Great Gatsby", "author": "F. Scott Fitzgerald" },
];
collection.insert_many(docs, None)?;
let cursor = collection.find(doc! { "author": "George Orwell" }, None)?;
for result in cursor {
match result {
Ok(document) => {
if let Some(title) = document.get("title").and_then(Bson::as_str) {
println!("title: {}", title);
} else {
println!("no title found");
}
}
Err(e) => return Err(e.into()),
}
}
Ok(())
}
-------------------------------------------------------------------
- Total
- Today
- Yesterday
- 별이 빚나는 밤
- 솔리드 쿨론
- weka
- 루미큐브 종류
- Life Chair
- yugabyteDB
- 홈 오피스
- Pixel Pals
- 로니카 BCS
- 별잉 빛나는 밤
- node.js
- Sybase IQ
- 카카오 에드
- GKRS
- 매직 트랙패드2
- 유가바이트디비
- 톡토기
- 파나소닉 비데 DL-EH10KWS
- VARIDESK
- 브리다 정수기
- 화분벌레
- 코라나 19
- 고체 향수
- 빈센트 반 고흐
- 증권정보포털
- JMW 헤어드라이기기
- 르세라핌
- 배당급
- 남설 팔찌
- 오미크론
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |