| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- web
- concept
- JavaScript
- bitcoin
- 삶
- CSS
- error
- express.js
- blockchain
- node.js
- graphQL
- evm
- built in object
- CLASS
- Ethereum
- solidity
- nextJS
- tailwindcss
- API
- middleware
- useState
- REACT
- SSR
- typeScript
- Props
- 기준
- HTML
- hardhat
- Redux
- Interface
- Today
- Total
목록orm (2)
ReasonJun
Integer Signed 4 Bytes => export const testTable = pgTable("testTable", { qty: integer("qty") }) Signed 2 Bytes => export const testTable = pgTable("testTable", { qty: smallint("qty") }) Signed 8 Bytes => export const testTable = pgTable("testTable", { qty: bigint("qty", {mode: "number"}) // {mode: "number"} : 2^31 < number < 2^53 // {mode: "bigint"} : 2^63 < number < 2^63 }) serial serial / ser..
ORM stands for Object-Relational Mapping. It is a programming technique and a software pattern that allows developers to work with relational databases using an object-oriented approach. ORM frameworks provide a level of abstraction between the database and the application, allowing developers to interact with the database using objects instead of writing raw SQL queries. The main idea behind OR..