#할인티켓_ 소셜커머스 50% 할인쿠폰티켓 정보제공 사이트 소개... ~~ 티켓몬스터 http://www.ticketmonster.co.kr 데일리픽 http://www.dailypick.co.kr 바이러스 http://www.buyrus.co.kr 위폰 http://www.wipon.co.kr 쿠폰 http://www.kupon.co.kr 쇼킹온 http://www.showkingon.com 딜즈온 http://www.dealson.co.kr 쿠팡 http://www.coupang.com 키위 http://www.qiwi.co.kr 오늘의 쿠폰 슈거딜 http://www.sugardeal.co.kr 트윗폰 http://www.tweetpon.com 반토막티켓 http://www.bantomak.co.k..
Connector/J 5.1은 MySql 5 와 호환된다 MySql 5 버전은 Connector/J 2.0과 호환되지 않는다. - jdbc 다운 (http://dev.mysql.com/downloads/connector/j/5.1.html) - 압축을 풀고 mysql ... .jar 파일을 %JAVA_HOME%\jre\lib\ext 에 복사한다 - 환경변수 설정에서 classpath에 mysql ... .jar파일의 경로를 추가한다 - 그래야 Tomcat 실행시 %JAVA_HOME%\jre\lib\ext 폴더 내의 library 들이 톰캣 실행시 사용 될 수 있다.
//Using hasOwnProperty to build resilient object looping. Object.prototype.otherKey = "otherValue"; var object = { key: "value" }; for ( var prop in object ) { if ( object.hasOwnProperty( prop ) ) { assert( prop, "key","There should only be one iterated property." ); } } //XPath if ( typeof document.evaluate === "function" ) { function getElementsByXPath(expression, parentElement) { var results ..
//Exposing the properties of the katana object using with(){}. var use = "other"; var katana = { isSharp: true, use: function(){ this.isSharp = !this.isSharp; } }; with ( katana ) { assert( true, "You can still call outside methods." ); isSharp = false; use(); assert( use !== "other","Use is a function, from the katana object." ); assert( this !== katana,"this isn't changed - it keeps its origin..