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 |
Tags
- React
- 회고
- multer
- Andrew Ng
- 자료구조
- 자바스크립트
- Linux
- 끈기
- 객체
- Sequence
- 우선순위
- Til
- 러닝자바스크립트
- Machine Learning
- NextJS
- 1일1문장
- coursera
- 리눅스
- ES6
- reactnative
- nodejs
- HTTP
- 클로저
- CSS
- 개발공부
- scope
- 데이터전송
- docker
- 스파르타코딩클럽
- javascript
Archives
- Today
- Total
목록column not allowed here (1)
해나아부지 개발일지
nodejs + oracledb error handling ORA-00984 column not allowed here
클라이언트에서 전송하는 req.body string을 SQL 쿼리에 넣기 위해서 `` (백틱) 사용시 (req, res) => { const { a, b, c } = req.body; oracleDb.getConnection({ user: 'user', password: 'password', connectString: 'localhost/XE' }, (err, connection) => { let result = connection.execute( `insert into main values (${a}, ${b}, ${c})` ) console.log(result) }) } [Error: ORA-00984: column not allowed here] 이 발생한다.
Developers/OracleDB
2021. 2. 2. 16:59