Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 페이페이
- 카마츠루
- codebuild
- PostgreSQL
- 아타미
- node.js
- terraform
- CSV
- duckdb
- vba
- local
- JenkinsFile
- pyenv
- 三井住友カード
- Selenium
- react.js
- PayPay
- 뮌헨
- 미츠이 스미토모
- 체코
- javascript
- Python
- documentdb
- 메르페이
- 釜つる
- typescript
- 熱海
- 태국
- 방콕
- 프라하
Archives
- Today
- Total
도쿄사는 외노자
RDS PostgreSQL 접속하기 본문
뭐 일단 간단하게 자바스크립트로 적어보면 아래와 같은 느낌.
import pg from 'pg';
async function SearchData() {
const client = new pg.Client({
user: 'postgres', // 유저명
password: 'postgres', // PW
host: 'aaaabbbbcccc123123.ap-northeast-1.rds.amazonaws.com', // RDS 엔드포인트
port: 5432,
database: 'postgres'
});
await client.connect();
const result = await client.query('select * from dbname.tablename');
console.log(result.rows);
client.end();
}
SearchData();
실시
node ./src/SearchDataPg.js
이걸 클라이언트만 분리해서 쓰려면 아래와 같은 느낌
import { Client } from 'pg';
const logger = LogUtils.getLogger();
export default async function () {
const dbClient = new Client({
user: 'postgres',
password: 'postgres',
host: 'aaaabbbbcccc123123.ap-northeast-1.rds.amazonaws.com',
port: 5432,
database: 'postgres'
});
await dbClient.connect();
return dbClient;
}
사용시엔 이렇게 쓰면 된다.
import dbClient from '../common/PGClient'
...
const client = await dbClient(); // Client취득
'Tech > JavaScript' 카테고리의 다른 글
Cognito의 UserId 취득하기 (0) | 2021.07.02 |
---|---|
class-validator의 조건부 사용 (0) | 2021.06.30 |
Object에 조건에 따라 데이터 삽입하기 (0) | 2021.06.09 |
DocumentDB(MongoDB) Javascript로 사용하기 (0) | 2021.06.03 |
AWS Secrets Manager로부터 DB정보 취득 (0) | 2021.05.28 |