摘要:
关于update set from where 关于update set from where 关于update set from where 下面是这样一个例子: 两个表a、b,想使b中的memo字段值等于a表中对应id的name值 表a:id,name 1 王 2 李 3 张 表b:id,Cli 阅读全文
摘要:
项目进行压力测试的时候,运行大概1小时候,后台抛出以下异常: 目测该问题是c3p0连接池导致的线程死锁。 这种数据库连接池线程死锁的问题发生的原因可能有很多,我将我的配置环境以及解决方法贴出来供大家参考一下: 使用环境,spring + hibernate +c3p0 配置如下: 这个配置中有一些属 阅读全文
摘要:
采用c3p0连接池,每次调试程序,第一次访问时(Tomcat服务器重启后再访问)都会出现以下错误,然后连接库需要很长时间,最终是可以连上的,之后再访问就没问题了,请高手们会诊一下,希望能帮小弟解决此问题,不胜感激!2009-9-27 13:32:26 com.mchange.v2.async.Thr 阅读全文
摘要:
HTML: 1 <h3>字符串数组排序前</h3> 2 <div id="show5"></div> 3 <h3>排序后</h3> 4 <div id="show6"></div> jquery: var animals = ['dog','cat','tiger','pig','bird']; $ 阅读全文
摘要:
纯粹做个记录,以免日后忘记该怎么设定。 这一篇将会说明两种使用 jQuery EasyUI DataGrid 的 Checkbox 设定方式,以及在既有数据下将 checked 为 true 的该笔数据列的 Checkbox 设定为 Checked,另外就是两种 Checkbox 设定方式下如何取得 阅读全文
摘要:
Oracle 9i数据库,执行下面语句出现错误“ORA-01791: 不是 SELECTed 表达式”:select distinct t.name from auth_employee t order by t.auth_employee_id asc 原来:SELECT语句中含有DISTINCT 阅读全文
摘要:
ibatis动态sql配置启动时提示:The content of elements must consist of well-formed character data... 分享| 2012-07-18 11:21wuming3632171 | 浏览 5114 次 ibatis配置如下,高手帮我 阅读全文
摘要:
1.创建表空间 create tablespace example_tablespace datafile 'e:\****.dbf' size 10m reuse autoextend on next 1m maxsize unlimited; 2.创建用户,指定表空间,临时表空间 create 阅读全文
摘要:
c3p0配置 initialPoolSize 和minPoolSize 可以设为0吗?设0有坏处吗? c3p0配置 initialPoolSize 和minPoolSize 可以设为0吗?设0有坏处吗? c3p0配置 initialPoolSize 和minPoolSize 可以设为0吗?设0有坏处 阅读全文
摘要:
程序如果长时间不进行数据库操作,那么数据源中的 Connection 很可能已经断开。其原因有可能是防火墙,或者连接的数据库设置的超时时间。这里使用的是 C3P0 连接 oracle 数据库,引起的异常信息为: org.springframework.transaction.TransactionS 阅读全文