nodejs PostgreSQL prepared statement 적용. nodejs에서 pg 모듈( Nodejs에 PostgreSQL 연동모듈중 가장 많이쓰이는 모듈) 사용시 PreparedStatement를 적용하는 방법을 찾다가 결국 모듈내 소스를 뒤져서 발견한 방법을 공개합니다. db.getConnection(function(error, client) { var query = 'SELECT * FROM MEMBER WHERE mbr_acc_id = $1 '; var param = [user.member_id]; client.query({text:query, values:param, name:"info_01"}, function(error, result) { if (error) { if (error..
postgresql schema 생성 및 조회설정. step1. schema 생성 스키마 생성CREATE SCHEMA myschema; schema내 table 접근시schema.table 다른 사용자가 소유한 스키마를 생성할 경우에는 CREATE SCHEMA schemaname AUTHORIZATION username; step2. table 생성CREATE TABLE products ( ... ); OR ( Database의 Default Schema가 Public이다.) CREATE TABLE public.products ( ... ); step3. 조회 schema 보기 기본적으로 조회되는 스키마에대한 순서와 조회될 스키마를 추가 할 수 있다. 조회 후 test 스키마를 조회 경로에 추가한다. $..
console 접속 명령 # su - postgres # psql # show a list of databases \l # show users select * from pg_user; # show all tables (including system tables) select * from pg_tables; # show tables in the current context (database/schema) \d # change current database \c database; # show all schemas in the current database \dn # Grant permissions on a schema to a user GRANT ALL ON myschema TO user; # show he..
- Total
- Today
- Yesterday
- hadoop
- 영작
- maven
- PostgreSQL
- 베트남
- 영문법
- Python
- memcached
- JBOSS
- Business English
- 여행
- 다낭
- NGINX
- 해외여행
- 스페인 여행
- 도덕경
- 비교구문
- AWS
- it
- 비지니스 영어
- Python Django
- nodejs
- 조동사
- k8s
- hdfs
- 가정법
- ubuntu
- redis
- mongoDB
- 대명사 구문
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |