- 浏览: 7872 次
- 性别:
最近访客 更多访客>>
最新评论
-
wxh512:
好久没有看了,今天把结果给大家,应该是第一种,不过需要添加le ...
下面的两个sql语句那个效率更高 -
yangyang111310:
郁闷中
sping+ibatis集成开发时出错 -
wxh512:
好了
我把sqlMap改了下面是代码
<?xml v ...
sping+ibatis集成开发时出错 -
xio:
不需要 User.getUser 。因为并没有设置useSta ...
sping+ibatis集成开发时出错 -
wxh512:
neptune 写道这种错误还问,用这个User.getUse ...
sping+ibatis集成开发时出错
文章列表
第一个
UPDATE stat_ip_20110912 a join ip_list b on a.ip>=b.startip and a.ip <=b.endip SET a.operator=b.type,a.province=b.province ;
第二个
UPDATE stat_ip_20110912 a,ip_list b SET a.operator=b.type,a.province=b.province where a.ip>=b.startip and a.ip <=b.endip
b表是一个ip的基础表32w数据 a表是一个访问ip表每天 ...
出错代码如下:
com.ibatis.sqlmap.client.SqlMapException: There is no statement named getUser
in this SqlMap.
at com.ibatis.sqlmap.engine.impl.SqlMapExecutorDelegate.getMappedStatement(SqlMapExecutorDelegate.java:293)
at com.ibatis.sqlmap.engine.impl.SqlMapExecutorDelegate.queryForObject(SqlMapEx ...
在hibernate2.0的处理方法为 下面的代码
在hibernate的配置文件中添加
hibernate.jdbc.batch_size=20
批量处理的方法为
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
for ( int i=0; i<100000; i++ ) {
Customer customer = new Customer(.....);
session.save(customer);
i ...