亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

mongodb怎么創建集合寫入數據庫

小億
110
2023-11-14 01:12:54
欄目: 云計算

在 MongoDB 中創建集合并寫入數據庫可以使用 insertOne()insertMany() 方法。

以下是使用 insertOne() 方法創建集合并寫入數據的示例:

  1. 首先,連接到 MongoDB 數據庫:
const MongoClient = require('mongodb').MongoClient;
const url = 'mongodb://localhost:27017/mydb';

MongoClient.connect(url, function(err, db) {
  if (err) throw err;
  console.log('數據庫已連接');
  // 在這里執行創建集合和寫入數據的操作
});
  1. 創建集合:
db.createCollection('mycollection', function(err, res) {
  if (err) throw err;
  console.log('集合已創建');
});
  1. 寫入數據:
const collection = db.collection('mycollection');
const data = { name: 'John', age: 30 };

collection.insertOne(data, function(err, res) {
  if (err) throw err;
  console.log('文檔已插入');
  db.close();
});

如果要一次插入多個文檔,可以使用 insertMany() 方法。示例代碼如下:

const data = [
  { name: 'John', age: 30 },
  { name: 'Jane', age: 25 },
  { name: 'Tom', age: 35 }
];

collection.insertMany(data, function(err, res) {
  if (err) throw err;
  console.log(`${res.insertedCount} 個文檔已插入`);
  db.close();
});

在執行完所有操作后,使用 db.close() 方法關閉數據庫連接。

0
那曲县| 常德市| 正定县| 通渭县| 马边| 高唐县| 沽源县| 永仁县| 定陶县| 陵川县| 北海市| 灌云县| 鲁甸县| 怀安县| 昆山市| 上饶县| 崇信县| 武乡县| 鹤岗市| 临清市| 万载县| 郧西县| 霞浦县| 岳阳市| 蒙山县| 东至县| 武义县| 乌兰浩特市| 曲靖市| 阳山县| 万安县| 甘肃省| 沾益县| 石家庄市| 白河县| 桂林市| 方正县| 沐川县| 本溪市| 曲水县| 江达县|