declare mycursor cursor scroll dynamicforselect customerid,address from bin_retailcustomer where delflag = '0' and areaid = '' and address like '%十巷%'
open mycursordeclare @id bigintdeclare @address varchar(50)fetch next from mycursor into @id,@addresswhile(@@fetch_status = 0)begin
update bin_reta ...
create or replace trigger test_titlesafter insert on test_titlesfor each row
declare rec integer; maxId integer; res integer; res1 integer;beginselect count(*) into rec from titles where title_name = :new.item_desc;select title_id into maxId from titles where rownum =1 ord ...
以下内容转自:http://topic.csdn.net/t/20050415/14/3939450.html
top.opener=null; top.close(); //注意, 不可跨域
以下内容转自:
http://hi.baidu.com/begreen/blog/item/b362387ae9b1e8eb2e73b3e2.html
一、术语session 在我的经验里,session这个词被滥用的程度大概仅次于transaction,更加有趣的是transaction与session在某些语境下的含义是相同的。 session,中文经常翻译为会话,其本来的含义是指有始有终的一系列动作/消息,比如打电话时从拿起电话拨号到挂断电话这中间的一系列过程可以称之为一个session。有时候我们可以看到这样的话“在一个浏览器会话期间,...&rd ...
以下内容转自:http://www.blogjava.net/ctguzhupan/archive/2006/10/27/73886.html
package com.zhupan.util;import java.io.OutputStream;import java.util.List;import jxl.Workbook;import jxl.format.Colour;import jxl.format.UnderlineStyle;import jxl.write.Label;i ...
- 17:34
- 浏览 (12)
- 评论 (0)
原: java操作修饰Excel字体大小合并单元格背景色列宽
/** * 将个人信息导出到Excel表 */public void grxxExportXLS(HttpServletResponse response, Grxx grxx, PageBean p) { List list = queryGrxxList(grxx, p); try { // String t ...
以下内容转自:http://cheerfulmao.bokee.com/4465982.html
下载页面download.htm:<pre><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <title>Download.htm</title> <meta http-eq ...
jboss本身支持热部署功能。
本人使用jboss4 和jboss5,其他版本并未测试。
但是在热部署中,jsp文件有可能出现缓存。清理缓存办法:找到work目录,删除相应的project目录。刷新即可使用。
哈哈。
以下内容转自:http://www.blogjava.net/baixch/archive/2008/06/13/207615.html
1.oracle对一条sql语句的执行是怎么管理并发和恢复控制的?一条符合语法的sql语句,定义了对数据库的操作。此操作执行的时刻,对应了数据库的一个数据状态。可以这样理解这个状态:到此执行时刻为止,没有任何数据库语句级操作正在并发执行;就是说实际上正在并发执行的多个语句级操作可以假定在此语句操作之后执行。这里强调语句级操作,是指如果一个事务包含多个操作语句,在此时刻实际已经执行了其中几个,此时刻也正在执行某 ...
以下内容转自:http://hi.baidu.com/xixitie/blog/item/8faf81db08763362d0164e90.html
lock table BO_ThreeYearInvestProgramHis in exclusive mode nowait;一,锁为了防止用户在同一时间并发地访问和修改资源,ORACLE使用不同类型的锁控制对数据的并发访问,以防止用户之间出现破坏性的交互操作,o ...







评论排行榜