본문 바로가기
반응형

분류 전체보기377

[SQL] Cause: java.util.NoSuchElementException / sql문을 잘 작성했는지 확인해보자. 나의 경우 insert에 # 하나 더 들어가 있었음. 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'egov.sqlMapClient' defined in file [C:\Developer\workspace\noiseInfo\.metadata\.plugins\org.eclipse.wst.server.core\.. 2018. 3. 6.
td add 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071var count1 = 0;var count2 = 0;var count3 = 0; function addTd(tableId){ tableId = tableId; if(tableId == "spa-light-tb"){ $("").appendTo($("#spa-light-tb")) .append("선택") .append("") .append("") .append("") .append("선택") .append("") .append(""); count1++; }else if(t.. 2018. 2. 26.
java.sql.SQLException: ORA-00911: 문자가 부적합합니다 나의 경우 원인은 sql마지막에 ; 이 찍혀있던 탓이었다. sql을 잘 작성했는지 확인해야 한다. 2018. 2. 21.
<selectKey>사용 쿼리 1234567891011121314151617181920212223242526272829303132 SELECT NVL(MAX(LGHT_SEQ),0)+1 AS LGHT_SEQ FROM LUSTNOUTRDLGHTDETAIL WHERE LGHT_NO = #lght_no# Colored by Color Scriptercs PK1인 LGHT_NO와, PK2인 LGHT_SEQ가 합쳐 UNIQUE KEY.현재 테이블 2개 각각의 VO를 만들어 파라미터로 넣어줘야하는 수정 작업이 필요하다. 2018. 2. 21.
(스크랩)Why is Git better than Subversion? https://stackoverflow.com/questions/871/why-is-git-better-than-subversion------------------------------------------------------------------------------------------------------------------------------------------------------I've been using Subversion for a few years and after using SourceSafe, I just love Subversion. Combined with TortoiseSVN, I can't really imagine how it could be any better.Yet.. 2018. 2. 6.
반응형