Gridview中状态列的值是1,某列的背景是是绿色状态字段是:archivesStatusprotected void gvInfo_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataCon...
分类:
其他好文 时间:
2014-10-15 18:01:51
阅读次数:
163
(1).SQLDECLAREi NUMBER;TYPE c_type_wip_entity IS TABLE OF wip_entities%ROWTYPE;c_wip_entity c_type_wip_entity;BEGINSELECT *BULK COLLECT INTO c_wip_ent...
分类:
数据库 时间:
2014-09-25 16:51:37
阅读次数:
222
if (e.Row.RowType==DataControlRowType.DataRow) {}e.Row.RowType 是指当前行的类型DataControlRowType 是GridView的行的类型集合 其中的DataRow是数据绑定行这个判断语句的意思就是判断当前行是不是数据绑定行是绑定...
分类:
Web程序 时间:
2014-09-12 18:42:43
阅读次数:
177
保证两个数据表结构相同,如不相同只能同步相同字段; 只是思路,具体请根据需求修改. declare cursor csrn_mon
is select * from table2; row_mon csrn_mon%rowtype; cursor csrn_loc
is
select * from ...
分类:
数据库 时间:
2014-09-12 15:04:03
阅读次数:
349
declarecursorstus_curisselect*fromstudents;--定义游标并且赋值(is 不能和cursor分开使用) cur_stu students%rowtype;--定义rowtypebeginopenstus_cur; --开启游标loop...
分类:
其他好文 时间:
2014-09-10 12:15:30
阅读次数:
485
测试了很久,网上说的方法很多,其实都是错误的,正确的写法:
declare
cursor rowAll is select * from tb_news where 1=1;
row1 tb_news%rowtype;
i int;
begin
i := 0;
for row1 in rowAll
loop
...
分类:
数据库 时间:
2014-08-28 14:52:26
阅读次数:
294
pl/sql除了可以使用Orecle规定的基本类型外,还提供了3种特殊的数据类型%type类型、record类型和%rowtype类型。【%type类型】使用%type可以声明一个与指定列名称相同的数据类型,例如:v_idemp.id%type是声名一个和emp表中id字段相同类型的变量。使用%type定义变量有两点好处:..
分类:
数据库 时间:
2014-08-07 07:22:59
阅读次数:
459
ORACLE中%TYPE和%ROWTYPE的使用...
分类:
数据库 时间:
2014-07-26 02:42:46
阅读次数:
308
---------------loop循环定义变量--------------------declare cursor c1 is select * from emp;# rec emp%rowtype;# i numeber:=1; # v_count number;begin# select count(*) into v_count from emp;#(1) open c1; loop...
分类:
数据库 时间:
2014-07-20 00:33:20
阅读次数:
334
1e.Row.RowType == DataControlRowType.DataRow的意思e.Row.RowType 是指当前行的类型DataControlRowType 是GridView的行的类型集合 其中的DataRow是数据绑定行这个判断语句的意思就是判断当前行是不是数据绑定行2这个.....
分类:
其他好文 时间:
2014-07-16 17:50:06
阅读次数:
211