일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Redux
- REACT
- error
- Props
- node.js
- SSR
- nextJS
- JavaScript
- web
- bitcoin
- CSS
- solidity
- Ethereum
- evm
- hardhat
- middleware
- typeScript
- API
- concept
- express.js
- built in object
- useState
- tailwindcss
- blockchain
- CLASS
- 기준
- HTML
- Interface
- 삶
- graphQL
- 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..