データベース

Sumor Cloud のツールです。
詳細なドキュメント
MySQL などのデータベースコネクタ。エンティティに基づく。

CI
Test
Coverage
Audit

インストール

npm i @sumor/database --save

必須条件

Node.JS バージョン

Node.JS バージョン 16.x 以上が必要です。

Node.JS の ES モジュールの必要性

このパッケージは ES モジュールで書かれているため、package.json ファイル内の以下のコードを変更してください:

{
  "type": "module"
}

使用法

一般的な使用法

import database from '@sumor/database'

const config = {
  host: 'localhost',
  user: 'root',
  password: 'password',
  database: 'database',
  port: 3306
}

await database.install(config, {
  entity: {
    Car: {
      property: {
        brand: {
          type: 'string',
          length: 100
        },
        model: {
          type: 'string',
          length: 100
        }
      }
    }
  },
  view: {}
})

// コネクションプールを持つクライアントを取得
const client = await database.client(config)

// コネクションを取得
const db = await client.connect()

// 操作ユーザーを設定
db.setUser('tester')

// レコードを作成
const car1Id = await db.insert('Car', {
  brand: 'BMW',
  model: 'X5'
})
const car2Id = await db.insert('Car', {
  brand: 'BMW',
  model: 'X6'
})

// レコードを読む
const car = await db.single('Car', { id: carId })
// car = {id: car1Id, brand: 'BMW', model: 'X5'}

// レコードをクエリ
const cars = await db.query('Car', {
  brand: 'BMW'
})
// cars = [{id: car1Id, brand: 'BMW', model: 'X5'}, {id: car2Id, brand: 'BMW', model: 'X6'}]

// レコード数をカウント
const count = await db.count('Car', {
  brand: 'BMW'
})
// count = 2

// レコードを更新
await db.update(
  'Car',
  { id: car1Id },
  {
    brand: 'BMW',
    model: 'X5M'
  }
)

// レコードを確認
await db.ensure('Car', ['brand'], {
  brand: 'BMW',
  model: 'X5C'
})
// brand が既に 'BMW' で存在する場合はレコードを挿入しません

// レコードを変更
await db.modify('Car', ['brand'], {
  brand: 'BMW',
  model: 'X5C'
})
// brand が既に 'BMW' で存在する場合はレコードの model を更新します

// レコードを削除
await db.delete('Car', { id: car1Id })

// コネクションを閉じる
await db.commit()

// ロールバック
await db.rollback()

// コネクションを閉じる
await db.release()

// サーバーをシャットダウンするときにクライアントを破棄
await client.destroy()

クエリオプション

// オプションを指定してレコードをクエリ
const cars = await db.select(
  'Car',
  {
    brand: 'BMW'
  },
  {
    term: 'X5',
    termRange: ['model'],
    top: 10,
    skip: 0
  }
)