개발86 PLS-00103: 심볼 ""를 만났습니다 다음 중 하나가 기대될 때: begin case declare exit for goto if loop mod null pragma raise return select update while with <식별자> <큰 따옴표로 구분된 식별자> <바인드 변수> << close current delete fetch lock insert open rollback savepoint set sql.. PLS-00103: 심볼 ""를 만났습니다 다음 중 하나가 기대될 때: begin case declare exit for goto if loop mod null pragma raise return select update while with 2010. 6. 24. Oracle cursor 접근 방법 처 : http://jrusi.tistory.com/category/개발자의길/Ibatis%20FrameWorks ... -- 단일 CURSOR -- -- 다중 CURSOR -- < paramet.. 2009. 10. 7. oracle update 출처 : http://www.psoug.org/reference/update.html http://www.jami.name/242 다음 내용은 최신 버전이 아닐 수 있습니다. 최신 버전은 위 사이트를 참조하세요. Basic Update Statements Update all records UPDATE SET = CREATE TABLE test AS SELECT object_name, object_type FROM all_objs; SELECT DISTINCT object_name FROM test; UPDATE test SET object_name = 'OOPS'; SELECT DISTINCT object_name FROM test; ROLLBACK; Update a specific record UPDA.. 2009. 6. 16. ByteArrayInputStream 로 받아서 가공할때 /* int ch; while((ch=baFile.read()) != -1 ){ // 9 tab : 13 enter if(ch == 9 ){ System.out.println( "*" ); } System.out.print( "read : ["+ ch + " : " + (char)ch + "]"); }*/ 9 == 탭 13 == 엔터 2009. 6. 9. 이전 1 ··· 4 5 6 7 8 9 10 ··· 22 다음