declare r_emp scott.emp%rowtype; cursor cur_emp is select t.* from scott.emp t;begin open cur_emp; loop fetch cur_emp ...
分类:
数据库 时间:
2015-06-29 23:42:44
阅读次数:
174
declare r_emp scott.emp%rowtype; cursor cur_emp is select t.* from scott.emp t;begin open cur_emp; if cur_emp%isopen then db...
分类:
数据库 时间:
2015-06-29 23:36:21
阅读次数:
172
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { ...
分类:
其他好文 时间:
2015-05-29 23:04:01
阅读次数:
152
1 说明
1.1 RECORD
定义记录数据类型。它类似于C语言中的结构数据类型(STRUCTURE),PL/SQL提供了将几个相关的、分离的、基本数据类型的变量组成一个整体的方法,即RECORD复合数据类型。在使用记录数据类型变量时,需要在声明部分先定义记录的组成、记录的变量,然后在执行部分引用该记录变量本身或其中的成员。
定义记录数据类型...
分类:
数据库 时间:
2015-05-24 18:56:36
阅读次数:
223
protected void gv1_RowDataBound(object sender, GridViewRowEventArgs e) { //首先判断是否是数据行 if (e.Row.RowType == Data...
分类:
其他好文 时间:
2015-05-14 11:39:03
阅读次数:
114
//修改表头 protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { switch (e.Row.RowType) { case DataC...
分类:
其他好文 时间:
2015-05-04 17:08:51
阅读次数:
141
/*创建一个过程,ORACLE?PL/SQL语法*/
CREATE?OR?REPLACE?PROCEDURE?MYPROC
AS
???v_id?????t_user.id%TYPE;?/*声明变量,类型与指定表字段一致*/
???v_user???t_user%ROWTYPE;?/*声明变量,...
分类:
数据库 时间:
2015-04-22 22:24:20
阅读次数:
306
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e){ string FstWeekEnd,FstWeekEndday; if (e.Row.RowType == DataControlRowType...
分类:
其他好文 时间:
2015-04-13 22:38:53
阅读次数:
142
本系列链接导航:[独孤九剑]Oracle知识点梳理(一)表空间、用户[独孤九剑]Oracle知识点梳理(二)数据库的连接[独孤九剑]Oracle知识点梳理(三)导入、导出[独孤九剑]Oracle知识点梳理(四)SQL语句之DML和DDL[独孤九剑]Oracle知识点梳理(五)数据库常用对象之Tabl...
分类:
数据库 时间:
2015-03-15 23:40:21
阅读次数:
238
CREATEORREPLACEPROCEDURESP_INTERFACELOG_TO_HISTORYISBEGIN/*declareCURSORlogsISSELECT*FROMthorn_interface_loglogWHERETO_CHAR(log.created_time,‘yyyyMMdd‘)<=TO_CHAR(SYSDATE-60,‘yyyyMMdd‘);TYPEhis_logISTABLEOFthorn_interface_log%ROWTYPE;his_logshis_log;BEGIN..
分类:
其他好文 时间:
2015-02-10 18:55:13
阅读次数:
178