随笔 - 6  文章 - 129  trackbacks - 0
<2024年11月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 821530
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2009 档案

激活Ubuntu 中的 root 帐号

posted @ 2009-12-30 16:16 Ke 阅读(215) | 评论 (0)  编辑

Ubuntu9.04下安装Oracle10.2(轉)

posted @ 2009-12-30 16:09 Ke 阅读(439) | 评论 (0)  编辑

ubuntu 9.04安装oracle 10g(轉)

posted @ 2009-12-30 13:48 Ke 阅读(520) | 评论 (0)  编辑

securityfilter-rememberme
     摘要: cookieLife (optional) specifies the number of days that you wish to keep the login cookie. The default if not specified is 15 days)
protection (optional) specifies the type of protection you want for the persisted cookie. Valid values are: all, validation, encryption, none. The default is not specified is all.  阅读全文

posted @ 2009-12-24 16:09 Ke 阅读(510) | 评论 (0)  编辑

jQuery+DWR動態編輯表格Script
     摘要: //edit table可編輯表格
var numTD = $("#datatable tbody td.edit");//排除掉不能被修改的單元格
numTD.dblclick(function(){
var inputobj = $("");//新建文本輸入框
var tdobj = $(this);//被編輯的單元格
var text = tdobj.html();

inputobj.val(text);
//important 一定要在插入文本框前進行判斷
if(tdobj.children("input").length > 0){
return fal  阅读全文

posted @ 2009-12-22 16:46 Ke 阅读(1124) | 评论 (1)  编辑

日記過濾器
     摘要: filterConfig.getServletContext().log(
"User access! " +
" User IP: " + address +
" Resource: " + file +
" Milliseconds used: " + (System.currentTimeMillis() - start)
);  阅读全文

posted @ 2009-12-21 10:35 Ke 阅读(257) | 评论 (0)  编辑

oracle 層次查詢

posted @ 2009-12-18 10:12 Ke 阅读(205) | 评论 (0)  编辑

存储过程
     摘要:
{call swap_email_address (?, ?)}
  阅读全文

posted @ 2009-12-15 19:39 Ke 阅读(219) | 评论 (0)  编辑

自动生成的主键
     摘要:
SELECT STOCKIDSEQUENCE.NEXTVAL AS ID FROM DUAL
  阅读全文

posted @ 2009-12-15 19:37 Ke 阅读(334) | 评论 (0)  编辑