Sumor Cloud Tool.
더 많은 문서
MySQL 등을 위한 데이터베이스 커넥터. Entity 기반.
npm i @sumor/database --save
Node.JS 버전 18.x 이상 필요
이 패키지는 ES 모듈로 작성되었으므로, package.json
파일에서 다음 코드를 변경해주십시오:
{
"type": "module"
}
엔티티와 뷰를 데이터베이스에 설치하기 위해 install 메서드를 사용할 수 있습니다.
database.install(config, [리소스 경로], [리소스 데이터])
case 1: 리소스 경로에서 엔티티와 뷰 설치, 프로젝트 루트 경로에서 데이터/entity 및 데이터/view를 로드합니다.
import database from '@sumor/database'
const config = {
host: 'localhost',
user: 'root',
password: 'password',
database: 'database',
port: 3306
}
await database.install(config.database, process.cwd() + '/data')
case 2: 리소스 데이터에서 엔티티와 뷰 설치, 데이터 오브젝트에서 데이터/entity와 데이터/view를 로드합니다.
import database from '@sumor/database'
await database.install(config, {
entity: {
Car: {
property: {
brand: {
type: 'string',
length: 100
},
model: {
type: 'string',
length: 100
}
}
}
},
view: {}
})
import database from '@sumor/database'
const config = {
host: 'localhost',
user: 'root',
password: 'password',
database: 'database',
port: 3306
}
// 연결 풀로 클라이언트 가져오기
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'
})
// 브랜드가 'BMW'인 레코드가 이미 있을 경우 레코드를 삽입하지 않음
// 레코드 수정
await db.modify('Car', ['brand'], {
brand: 'BMW',
model: 'X5C'
})
// 브랜드가 'BMW'인 레코드가 이미 있을 경우 모델을 업데이트함
// 레코드 삭제
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
}
)
테이블에 인덱스를 생성하기 위해 엔티티 정의에 인덱스 배열을 추가할 수 있습니다. 기본적으로 id
필드에 인덱스가 생성됩니다.
테이블에 조인을 생성하기 위해 엔티티 정의에 조인 객체를 추가할 수 있습니다. 아래 예제와 같이, Car 엔티티에 userId 필드를 생성합니다.
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
}
},
index: ['userId'],
join: {
user: 'User'
}
}
},
view: {}
})