일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tomcat
- JSON
- swingx
- Eclipse
- appspresso
- rowspan
- Struts
- iBATIS
- MySQL
- 가우스
- dock
- 선택적조인
- PLSQL
- Google Map
- PHP
- 전자정부프레임워크
- node.js
- WebLogic
- jsr 296
- Ajax
- ibsheet
- MFC
- Android
- sencha touch
- Spring
- oracle
- JDOM
- phonegap
- jQuery
- GPS
- Today
- Total
목록Developement (559)
Where The Streets Have No Name
-- Unconditional insert into ALL tables INSERT ALL INTO sal_history VALUES(empid,hiredate,sal) INTO mgr_history VALUES(empid,mgr,sysdate) SELECT employee_id EMPID, hire_date HIREDATE, salary SAL, manager_id MGR FROM employees WHERE employee_id > 200; -- Pivoting insert to split non-relational data INSERT ALL INTO Sales_info VALUES (employee_id,week_id,sales_MON) INTO Sales_info VALUES (employee_..
---------------------------------------------- 임시 테이블 생성 ---------------------------------------------- connect scott/tiger; DROP TABLE bb; CREATE TABLE bb ( empno NUMBER, empname VARCHAR2(10) ); ---------------------------------------------- 풀이 ---------------------------------------------- DECLARE v_array_size CONSTANT INTEGER := 100; v_empno DBMS_SQL.NUMBER_TABLE; v_empname DBMS_SQL.VARCHAR2_..
/*--------------------------------------------------------------------------------------------- IBSheet 를 통해 받아온 xml 스트링에서 데이터를 리턴 parameter 1 : IBSheet를 통해 받아온 xml string return : array ex) return 이용 for(i=0;i
출처 : http://solijini.com/1423 이름 (제작사) 용 도 비고 e‐TEST Suite (Empirix) 웹 어플리케이션 전문 기능 및 부하테스트 자동화 및 관리 도구 패키지 e‐Tester, e‐Load, e‐Manager, e‐Reporter e‐Tester (Empirix) Web 어플리케이션의 기능 및 회귀 테스트 자동화 도구 e‐Load (Empirix) 가상 유저를 생성하여 웹 어플리케이션 및 시스템의 성능/부하 테스트 OneSight (Empirix) 웹 어플리케이션 성능 감시 모니터링 도구 WinRunner (Mercury Interactive) Windows 어플리케이션의 기능테스트 자동화 도구 LoadRunner (Mercury Interactive) 가상 유저를 생성..
여러종류의 서블릿컨테이너를 사용하다 보면 에러메세지를 로그파일에만 기록하고 console에 출력할수 없는 경우가 생기기도 합니다. 지금 사용하는 resin 2.1버전이 그렇네요 이때 사용자 화면에 보이지 않는 jsp같은 것이 에러가 날시에 일일이 error.log를 확인해야하는 반복작업을 해야합니다. 그래서 로그를 이클립스에서 바로 보는 플러그인이 없나해서 찾다가 발견한게 LogWatcher입니다. 설정은 아직 많이 안써봐서 모르겠지만 simple하고 괜찮은것 같습니다. 로그의 내용을 실시간으로 이클립스상에서 확인하려는 분에게 강추합니다. http://graysky.sourceforge.net/
출처 : http://blog.naver.com/sttng/140016519455 화일에다 삽입하면 자동으로 정보를 갱신해준단다.Keyword substitution As long as you edit source files inside your working copy of a module you can always find out the state of your files via `cvs status' and `cvs log'. But as soon as you export the files from your development environment it becomes harder to identify which revisions they are. CVS can use a mechanism known..
/* Create by nhosw at i-swear.com 2007. 05. 08 어버이날을 맞이하여.. 이 주석은 지우지 말아주시길 바랍니다. ps. 사용중 더 좋은 방법이나 버그가 있을 경우 메일로 부탁드립니다. 소스를 오픈한다는것은 더 좋은 소스로 고치기 위함이 아닐까요...... 감사합니다. 사용법 바코드를 그릴 페이지에 아래의 스타일 시트를 선언해주셔야 합니다. 바코드를 그릴 라인에서 아래와 같이 써줍니다. */ var s; var b; var b_; var s_; var bar_ar = new Array(); bar_ar["0"] = "1010011011010"; bar_ar["1"] = "1101001010110"; bar_ar["2"] = "1011001010110"; bar_ar["3"..
출처 : http://blog.naver.com/johnrivelt/100036291898 첫번째, 객체의 생성 var arr = []; var obj = {}; var str = ""; var arr1 = [1,2,3]; var obj1 = {prop1 : 'value1', "prop2" : 'value2'}; Object는 {} 로, Array는 []로 생성할 수 있다. object 를 생성할 때 property 의 이름은 따옴표를 따로 해주지않아도 prop1의 경우처럼 그냥 사용할 수 있다. 하지만, 혹시라도 있을지 모르는 문제점(prop1이 변수로 선언되어있다던가하는…)을 미리 방지하기 위해서 따옴표를 붙여주도록 하는게 좋다. 단, 충돌이 없음이 확실하다면 생략해도 무방하다. 두번째, object..
출처 : http://blog.naver.com/orapybubu/40025300615 create table IN_TAB (CODE varchar2(4), IN_DATE varchar2(8), AMOUNT number); insert into IN_TAB values(1000, '20030101', 1000); insert into IN_TAB values(1000, '20030101', 6000); insert into IN_TAB values(1000, '20030103', 2000); insert into IN_TAB values(1000, '20030104', 7000); create table OUT_TAB (CODE varchar2(4), OUT_DATE varchar2(8), AMOUNT ..
출처 : http://www.oracle-developer.net/display.php?id=301 This article demonstrates a new method for binding IN-lists in 10g,using the new collection condition MEMBER OF. Also included is a commonpre-10g method and a performance comparison (with dramatic resultswhich leads me to conclude that MEMBER OF is much simpler to use butshould only be used with very small sets or lists). Incidentally, how ..
SELECT TO_NUMBER(TO_CHAR(SYSDATE, 'YYYY')) - TO_NUMBER(DECODE(SUBSTR(주민번호,1, 1), '0', '20', '19')||SUBSTR(주민번호, 1, 2)) + 1 AGE FROM 테이블
출처 : http://blog.naver.com/pkoksh/150020605179 function LoofSample{ var msheet = document.frm1.mySheet; //마지막 행의 인덱스 var lrow = msheet.LastRow; //헤더행 갯수 var hrow = msheet.HeaderRows; for(i=hrow;i
출처 : http://blog.naver.com/pkoksh/150020605065 //********************************************************************************************** // 공통 Javascript 소스 //********************************************************************************************** //--------------------------------------------------------------------------------------------- // combodata로 select box 에 append 시킨다. //..
http://wagenknecht.org/blog/archives/2006/03/resin-plug-in-for-eclipse.html
출처 : http://blog.naver.com/whily312/100037185655 레진은 톰켓과 같은 was 이다.다만 레진은 윈도우 계열에 더욱 최적화 되어 있고톰켓은 유닉스와 윈도우 계열에 최적화 되어있다. 이클립스 3.2 부터는 resin을 지원하지 않기 때문에 java응용프로그램에서 따로 설정을 해줘야한다. 먼저 레진3.0을 다운받아 톰켓처럼 압축을 풀어주면 된다. (따로 설치 없음)perspective를 java로 클릭하여 패키지형태로 해놓는다.(자원에서 설정할수 없음) 추가할 라이브러리 만들어주기[창] -> [환경설정] -> [java] -> [빌드경로] -> [사용자라이브러리] -> [새로작성하기] 이름은 대충 지어주고 resin\lib에 있는 jar를 몽땅 추가해 주고 확인 디버그 ▼..
First define a Bean called StudentGrades: Package example; public StudentGrades { private String name, biology, chemistry, physics, english, math; public String getName () { return this.name; } public String getBiology () { return this.biology; } public String getChemisty () { return this.chemistry; } public String getPhysics () { return this.physics; } public String getEnglish () { return this...
출처 : http://blog.naver.com/julymorning4/100018922244 스트럿츠가 제공 하는 예외 처리 스트럿츠 1.1.이후에는 작지만 효율적인 예외처리 프레임워크를 추가 했습니다. 또한org.apache.struts.util.AppException 클래스는 ActionError를 포함하며java.lang.Exception을 확장한 클래스 입니다. 아래와 같이 스트럿츠에서 사용하면 되는데 throw new AppException(“error.password.invalid”); 생성자의 “error.password.invalid”는 리소스 번들의 key 이며 프레임웍에서는 자동적으로 예외의ActionError 객체를 생성하고 적절한 scope에 저장 합니다. 물론 애플리케이션에서 A..
출처 : http://blog.naver.com/julymorning4/100018922231 자바의 예외는 애플리케이션에서 비정상적인 상황이 발생 할 때 생성되는 객체 입니다. 자바에서 예외가 발생하면java.lang.Throwable 객체를 상속한 객체를 생성하는 것입니다. Throwable 아래에는java.lang.Error와 java.lang.Exception등이 있습니다. 일반적으로 Exception의 경우 Application에서 처리 가능한 예외이며 스트럿츠에서의 모든 예외는 Exception 클래스의 서브 클래스로 생성하고 발생해야 합니다. Exception을 제외한 Error 부분은 심각한 문제들을 위해 예약되어 있습니다. 예를 들어 애플리케이션에서 사용 할 시스템 메모리가 부족한에러 등..
출처 : http://programmer.egloos.com/689382 IntroductionList of some of the best Open Source projects written in VC++/MFC. BackgroundCodeprojecthas the best source code repository for VC++ developers. But anothersite Sourceforge.net also have some of the best quality projectsavailable for VC++. Here I lists some of the best open source projectswritten in Visual C++. These are very good reference fo..
출처 : http://humanedjucation.com/trails/learning_trail_eclipse.htm This online learning trail is intended for Java developers who wish to start working on Eclipse plug-in development.The trail should be followed step-by-step. Where examples are provided, the reader should work through them.Total time required:1.5 days for Basic Java 5 days for Advanced Java [Mandatory only for senior developers] ..