- 浏览: 53003 次
- 性别:
- 来自: 江阴
最新评论
-
xiaoduanayu:
博主文章有错误,即使是最低的隔离级别(读未提交)也不会出现第一 ...
数据库事务隔离级别与锁 -
linpz:
很可爱!!!
秀儿子 -
java10000:
对于您所说的ms_sql和oracle中的读取已提交(Read ...
数据库事务隔离级别与锁 -
case0079:
ORACLE中更好的办法是使用ROWID
DELETE FRO ...
笔试题目
文章列表
http://www.blogjava.net/landor2004/archive/2009/08/11/290567.html
- 2009-12-04 20:10
- 浏览 959
- 评论(0)
http://msdn.microsoft.com/en-us/library/bb250448(VS.85).aspx
- 2009-10-12 09:08
- 浏览 915
- 评论(0)
同时使用的时候需要配置[PT]标记
参考http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html
- 2009-04-12 09:57
- 浏览 1409
- 评论(0)
关于Container-Managed Entity Managers
手册中写到
With a container-managed entity manager, an EntityManager instance’s persistence context is automatically propagated by the container to all application components that use the EntityManager instance within a single Java Transaction Architecture (JTA) transac ...
- 2009-03-16 23:57
- 浏览 935
- 评论(0)
有些同事喜欢在每个方法开始前CHECK参数,抛出一些诸如IllegalArgumentException之类的异常.
最近瞄了一下Effective Java,竟然也是这样建议的.
可是在网站开发中,一般都会在入口程序中或则前CHECK参数.
那以后的SERVICE和DAO难道还需要CHECK吗.
譬如好酒好菜放在面前,一个字"吃";毒药放在面前,两个字"不吃";这个是嘴巴管的.
但是如果吃到肚子里面的话,胃是统统会处理的呀.
CHECK OR NOT?
- 2009-03-04 20:21
- 浏览 883
- 评论(0)
http://developer.yahoo.com/performance/rules.html
- 2009-03-02 19:21
- 浏览 928
- 评论(0)
STRUTS本身提供PARAM自动封装到ACTION的FIELD中
但如果一个ACTION有多个方法EXCUTE1.EXCUTE2...
这个时候如果每个方法要处理的PARAM不同的话则FIELD是他们的并集,这样代码看起来比较难看
各位对这个有什么好的思路不?
- 2009-03-02 11:55
- 浏览 1319
- 评论(0)
这个题感觉开发中不太容易遇到吧
id name class score
1 小东 语文 90
2 小东 语文 90
3 大东 数学 68
4 小东 语文 90
删除多余数据
答案:
delete test a where exists (select 1 from test b where a.name=b.name and a.class=b.class and a.id>b.id)
- 2009-02-19 17:05
- 浏览 1036
- 评论(1)
设计的一个自定义异常的封装
- 博客分类:
- JAVA
package com.d1xn.core.exception;
/**
* 异常枚举
*
* @author gonghf
* @version 1.0 Jan 5, 2009
*/
public final class D1xnErrorEnum {
public final static D1xnError E1000 = new D1xnError("1000", "没有该异常");
public final static D1xnError E2000 = new D1xnError("2000", &q ...
- 2009-01-06 12:42
- 浏览 2676
- 评论(0)
http://www.techonthenet.com/oracle/exceptions/named_system.php
Oracle Exception NameOracle ErrorExplanation
DUP_VAL_ON_INDEX
ORA-00001
You tried to execute an INSERT or UPDATE statement that has created a duplicate value in a field restricted by a unique index.
TIMEOUT_ON_RESOURCE
ORA-00051 ...
- 2008-12-23 07:06
- 浏览 2223
- 评论(0)
http://tech.ccidnet.com/art/3089/20060713/622041_1.html
本文介绍了Linux下的cluster软件LVS,并举例介绍一个Linux下的cluster(集群)的安装和实现的详细过程。
在各种网络服务普遍应用的今天,随网络速度的提高以及用户的增加,在一些繁忙的 ...
- 2008-12-11 11:01
- 浏览 1749
- 评论(0)