2005-03-23から1日間の記事一覧

AOL解約

etc

http://support.aol.co.jp/template/faq/report/fa_re_cancel01.html http://support.aol.co.jp/guide/gu_crowded.html 海外ローミングに使ったAOLの解約手続きをしました。この解約って意外と面倒。 入会はオンラインでできますが、解約は「電話」 電話は込…

地価公示

http://www.chugoku-np.co.jp/News/Sp05032307.html発表前はけっこう材料なるね。来年は気にしとこう。

ライブドア 今日の状況

http://charge.biz.yahoo.co.jp/vip/news/rtr/050323/050323_mbiz2430391.html 東京高裁の判決が出たとこ。 回転失敗気味。 江本、中島みゆき、タモリら番組降板か http://www.nikkansports.com/ns/entertainment/f-et-tp0-050323-0030.html (via http://d.h…

RowSetとAUTO INCREMENT

RowSetを使ってINSERTするとき、AUTO INCREMENT(IDENTITY)カラムがあるとエラーに場合 明示的にnullを入れるとOKみたい (とりあえずHSQLDBの場合は) CachedRowSet crs = executeQuery("select * from movie"); crs.moveToInsertRow(); crs.updateNull("id");…

LEFT OUTER JOIN

etc

http://www.seshop.com/se/edu/shikaku/omo/miti/silver_miti26.asp?educat=silver2完全に忘れてる。。。 一例 select movie.id,movie.title,movie.price,publisher.name from movie left outer join publisher on movie.id = publisher.id movie(全件) ← pu…

LDBC

http://ldbc.sourceforge.net/ LDBC (Liberty DataBase Connectivity) is a JDBC driver that provides vendor-independent database access. http://ldbc.sourceforge.net/html/databases.html RemarksによくあるDB依存の問題一覧

カラム名指定

http://www.thinkit.co.jp/cert/tech/3/8/sample1.htmよく見たらカラム名指定できるじゃんかぁ crs.updateInt(2, 200);//2つ目のカラム ↓ crs.updateInt("price", 200);