--第一个PL/SQL程序
declare
var_empnamevarchar2(20);
begin
selectempnameintovar_empnamefromemployee
whereempid=¶m_empid;
dbms_output.put_line(var_empname);
end;
--rowtype
declare
row_resultemployee%rowtype;
begin
select*intorow_resultfromemployeewher..
分类:
数据库 时间:
2014-12-23 06:44:47
阅读次数:
178
//后台代码
protectedvoidXXX_GridView_RowDataBound(objectsender,GridViewRowEventArgse){if(e.Row.RowType==DataControlRowType.DataRow||e.Row.RowType==DataControlRowType.Header){
//保持列不变形for(inti=1;i<e.Row.Cells.Count;i++){//方法一:e.Row.Cells[i].Tex..
分类:
其他好文 时间:
2014-12-03 19:35:09
阅读次数:
129
Oracle PL/SQL中如何使用%TYPE和%ROWTYPE 1. 使用%TYPE 在许多情况下,PL/SQL变量可以用来存储在数据库表中的数据。在这种情况下,变量应该拥有与表列相同的类型。例如,students表的first_name列的类型为VARCHAR2(20),我们可以按照下述方式.....
分类:
数据库 时间:
2014-12-01 00:44:43
阅读次数:
329
DECLARE
CURSOR cur_h IS
SELECT h.*
FROM ar_customers h
WHERE h.customer_name /*'—XD';*/
LIKE '%—XD';
p_customer_rec cux_ar_cust_accounts_v%ROWTYPE;
l_retu...
分类:
其他好文 时间:
2014-11-25 23:34:15
阅读次数:
291
原文: 游标的使用 定义游标: cursor calenderStatus_cur is select * from ut_calenderStatus ; vr_calenderStatus ut_calenderStatus % rowtype; 打开游标,提取游标中的数据到游标行中: open...
分类:
其他好文 时间:
2014-11-14 19:17:26
阅读次数:
144
定义游标:
cursor calenderStatus_cur
is
select * from ut_calenderStatus ;
vr_calenderStatus ut_calenderStatus % rowtype;
打开游标,提取游标中的数据到游标行中:
open calenderStatus_cur;
...
分类:
其他好文 时间:
2014-11-14 17:46:57
阅读次数:
147
CREATE OR REPLACE
PROCEDURE P_REPLACE IS
v_sql VARCHAR2(2000);
CURSOR cur IS SELECT * FROM user_tab_cols;
tableinfo user_tab_cols%rowtype;
BEGIN
OPEN cur;
LOOP
FETCH cur INTO tableinfo;
EXIT WHEN cur...
分类:
数据库 时间:
2014-11-12 11:52:29
阅读次数:
288
在gridview中的RowDataBound事件里面写 switch (e.Row.RowType) {case DataControlRowType.Header:e.Row.BackColor = Color.FromArgb(153, 0, 0);e.Row.ForeColor...
分类:
其他好文 时间:
2014-11-02 23:53:12
阅读次数:
206
1、单元格超过部分省略号显示:if (e.Row.RowType == DataControlRowType.DataRow)//数据行{ string Str = e.Row.Cells[1].Text; //第二列内容 if (Str.Length > 45) //第二列内容大于20...
分类:
其他好文 时间:
2014-10-23 15:46:53
阅读次数:
161
protected void gvInfo_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { ...
分类:
其他好文 时间:
2014-10-19 22:43:07
阅读次数:
202