2012年9月21日金曜日

struts2 アクションクラスの中、リクエストの取得

struts2 アクションクラスの中、リクエストの取得


HttpServletRequest request = ServletActionContext.getRequest();
もしくは

ActionContext context = ActionContext.getContext();
HttpServletRequest request = (HttpServletRequest)context.get(ServletActionContext.HTTP_REQUEST);

mysql where in クエリの使い方

mysql where in クエリの使い方


例え、SELECT picture_id FROM msg WHERE id = 77
の実行結果は 【12,11,10,4】
それ次は、SELECT * FROM upfiles WHERE id IN(12,11,10,4);を求めるには?

自然と、こう書きたくなるでしょう?

SELECT * FROM upfiles WHERE id IN(SELECT picture_id FROM msg WHERE id = 77);

残念ながら、実行エラーになります。

正しい書き方は、


SELECT * FROM upfiles WHERE instr((SELECT picture_id FROM msg where id=77),id)>0;

2012年9月20日木曜日

photoshop同心円の描き方

photoshop同心円の描き方

まず円を描く
ctrl+t自由変更
の時、Shift+Allを押しながら大きさを変更