티스토리 뷰
많은 삽질을 통해 도달한 결과이기에 과정을 자세히 기재할 수 ㄴ없지만.. 코드만이라도
각종 패키지들 설치하고.. 몽고디비를 실행시킨 뒤. 해당 파일를 실행시킨다.
ex) node server.js
----------------- server.js -----------------
// get mongoose package
var mongoose = require('mongoose');
// connect to MongoDB / the name of DB is set to 'myDB'
mongoose.connect('mongodb://localhost/myDB');
// we get the pending connection to myDB running on localhost
var db = mongoose.connection;
// we get notified if error occurs
db.on('error', console.error.bind(console, 'connection error:'));
// executed when the connection opens
db.once('open', function callback () {
// add your code here when opening
console.log("open");
});
// creates DB schema
var userSchema = mongoose.Schema({
username: 'string',
age: 'number'
});
// compiels our schema into a model
var User = mongoose.model('User', userSchema);
// add user1 and user2 to "User" model
var user1 = new User({ username: 'gchoi', age: 30 });
var user2 = new User({ username: 'jmpark', age: 29 });
// save user1
user1.save(function (err, user1) {
if (err) // TODO handle the error
console.log("error");
});
// save user2
user2.save(function (err, user2) {
if (err) // TODO handle the error
console.log("error");
});
-------------------------------------------------------
콘솔에 open 이 뜨면 성공적으로 접속이 되었다는 것이고
두개의 User데이터가 insert 되었을 것이다.
이 때,,,
------------------------------dbinsert.js-----------------------------
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/myDB', function(error, db){
if(error) {
console.log(error);
} else {
var michael = {name:'Michael', age:15};
db.collection('users').insert(michael);
db.close();
}
});
-------------------------------------------------------------------------
코드를 실행하면 insert가 된다..
---------------------------------------
'Mongo DB' 카테고리의 다른 글
Mongo DB 기초.. (0) | 2020.07.14 |
---|
- Total
- Today
- Yesterday
- https://hwan-shell.tistory.com/244
- 귀찮아;;
- 구글 맵 선그리기
- 클래스형 코드
- spannableText
- text 부분 색 칠하기
- 함수형 코드
- mongo db
- nosql
- ubunut 설치 link
- 자바
- MongoDB
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- insert
- not working adb
- Android
- mac android
- React Native
- ubunut android
- 명령어
- adb 환경변수
- 차번호 정규식
- not starting .bash_profile
- not found adb
- 구글 맵 경로 그리기
- react native state
- 차번호 정규표현식
- 안드로이드
- rn
- 데이터베이스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |