본문 바로가기

정리38

MySQL - Safe Mode MySQL - Safe Mode Safe update mode란 where 문을 빼 먹거나 잘못 적어서 원하지 않는 data가 업데이트 되지 않게 방지해 주는 mode이다 즉 Key값으로 업데이트 명령을 내려야 업데이트가 되고 그 이외의 조건은 에러가 나게 된다. 실수를 방지해주긴 하지만 테이블을 전체적으로 수정해야 하는 경우에는 이 모드를 잠시 꺼주면 된다.끄는 방법SET SQL_SAFE_UPDATES=0;켜는 방법SET SQL_SAFE_UPDATES=1;관련 에러 메시지Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable .. 2017. 1. 17.
JPA - COALESCE, IFNULL 값이 없을 경우 두번째 파라미터 리턴, sql문자에 IFNULL을 뜻합SELECT COALESCE(SUM(pd.quantity), 0) 2017. 1. 17.
Tweenjs 정리 Tweenjs 정리createjs.Tween.get(circle, {loop: true}) .wait(1000) // wait for 1 second .to({scaleX: 0.2, scaleY: 0.2}) // jump to the new scale properties (default duration of 0) .wait(1000) .to({scaleX: 1, scaleY: 1}, 1000, createjs.Ease.bounceOut) .call(console.log, ["done!"], console) // call console.log("done!"); .set({visible: false}, highlight) // set visible=false on highlightget(target, [pr.. 2017. 1. 16.
EASELJS - 충돌처리 EASELJS 충돌처리HITTESThitTest 함수을 호출하는 오브젝트와 지정된 포인트가 충돌이 일어날 경우 true를 리턴한다. (ie. if it will draw to that pixel). 특정 오브젝트가 마우스와 충돌이 있어나는 지 확인할 수 있다.myDisplayObject.hitTest(localX, localY);다음 데모에서는 circle.hitTest (stage.mouseX, stage.mouseY)를 호출하여 마우스가 빨간색 원 위에 있는지 확인합니다.var stage, circle; function init() { stage = new createjs.Stage("demoCanvas"); circle = stage.addChild(new createjs.Shape()); circ.. 2017. 1. 16.