23.01.28 MySQL->Oracle 교체 중 error
기존 mysql 사용시 NoticeDAO.java 파일에서 String sql = "insert into article (writer_id, writer_name, title, regdate, moddate, read_cnt, isshow) "+ "values(?, ?, ?, ?, ?, 0, 'Y')"; 이러한 형식으로 insert하였다.(MySQL은 auto_increment 기능이 있어서 insert 시에 auto_increment 기능이 적용된 컬럼에는 굳이 insert 값을 넣지 않아도 되지만 oracle은 해당 auto_increment 기능이 없으므로 tmp_seq sequence를 생성하여 아래와 같이 insert하였다. String sql = "insert into article (arti..
2023. 1. 28.