일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 세그먼트 트리
- Codeforces
- BOJ
- 딕셔너리
- mysql
- 자료구조
- 외래키
- 네이밍
- 리스트 컴프리헨션
- project euler
- itertools
- Dictionary
- ceil
- floor
- convention
- list comprehension
- FOREIGN KEY
- 소수
- timestamp
- flask
- SUM
- 2557
- 큰 수 나누기
- SUM()
- lower_case_table_names
- enumerate
- 에라토스테네스의 체
- datetime
- python
- 파이썬
- Today
- Total
목록DB 공부 기록/kysely (3)
늒네 기록
kysely의 메인 사이트에 들어가보면 playground라는 곳이 있다. Playground | Kysely Playground | Kysely @wirekang has created a playground for Kysely. You can use it to quickly test stuff out and for creating code examples for your issues, PRs and Discord messages. kysely.dev 대충 이렇게 생긴 페이지가 로드된다. 사용 방법은 간단하다. 좌측 패널에 kysely를 사용한 코드를 작성하면 우측에 코드를 통해 생성된 쿼리를 보여준다. 여기서 중요한 것은, 이 playground에서 실제 코드를 작성할때 지원되는 기능들을 미리 살펴볼 ..
그래서 쿼리빌더 진형으로 넘어가서 쓸만한 프로젝트가 없는지 살펴보다가, 아래의 글 등을 발견하면서 zapatos라는 프로젝트를 알게 되었다. Running home on Typescript and Postgres with Zapatos | by Yasith Ariyasena | Nerd For Tech | Medium Running home on Typescript and Postgres with Zapatos A super alternative to heavy-weight ORMs for Typescript/Postgres medium.com zapatos도 짧게 찾아봤을 때는 꽤 매력적인 프로젝트였다. 'Zero-Abstraction Postgres for TypeScript' 라는 소개답게 타입을 ..
예전에 토이 프로젝트에서 nestjs를 사용하면서 mysql DB와 연결하기 위해 TypeORM을 사용했던 적이 있었다. 당시에는 DB를 먼저 설계하고 그 다음 DB를 서버와 연동했는데, 아래의 nestjs의 공식 문서에 TypeORM을 활용하는 방법이 친절하게 설명되어 있어서 이를 사용했었다. Database | NestJS - A progressive Node.js framework Documentation | NestJS - A progressive Node.js framework Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is b..