分享
 
 
 

取数据窗口发生变化情况的一个函数

王朝other·作者佚名  2006-01-31
窄屏简体版  字體: |||超大  

取数据窗口发生变化的一个函数

by ...---... ( QQ: 21417511 )

当我们在数据窗口发生数据变化时,有时需要将变化的情况(变化的列,变化前后的值)记录下来,为此,写了一个函数,不敢独享,贴上来望各位大侠指证!

/*------------------------------------------------------------------------------

Function: public u_dw.of_Getmodi

Returns: String

Parameters: reference String as_modicol[]

Description:

--------------------------------------------------------------------------------

2005-04-20 2.0.0 Initial version by cuixuf (Mail:cuixuf@sina.com)

------------------------------------------------------------------------------*/

string ls_modi[], &

ls_col[], &

ls_coltext[], &

ls_modicol[], &

ls_key[], &

ls_type[], &

ls_keycontent[], &

ls_filter, &

ls_find, &

ls_modicontent

any la_data_s[], &

la_data_t[]

long ll_colcnt, &

ll_index, &

ll_find, &

ll_row_s, &

ll_rowcnt_s, &

ll_row_t, &

ll_rowcnt_t

datastore lds_source

this.accepttext( )

lds_source = create datastore

lds_source.dataobject = this.dataobject

lds_source.settransobject(sqlca)

ls_filter = this.Describe("DataWindow.Table.Filter")

lds_source.setfilter( ls_filter )

lds_source.filter()

ll_rowcnt_s = lds_source.retrieve( )

ll_colcnt = long(this.Describe("DataWindow.Column.Count"))

for ll_index = 1 to ll_colcnt

ls_col[ll_index] = this.Describe("#"+string(ll_index)+".Name")

ls_key[ll_index] = this.Describe("#"+string(ll_index) + ".Key")

ls_type[ll_index] = this.Describe( "#" + String(ll_Index) + ".ColType")

ls_coltext[ll_index] = of_Strip(this.Describe( ls_col[ll_index] + "_t.Text"))

next

//source-->target

for ll_row_s = 1 to ll_rowcnt_s

//get col name(key name) and value

ls_keycontent[ll_row_s] = ''

ls_modi[ll_row_s] = ''

ls_find = ''

for ll_index = 1 to ll_colcnt

la_data_s[ll_index] = of_getitem( lds_source, ll_row_s, ll_index, ls_type[ll_index])

If ls_key[ll_index] = "yes" then

If gnv_fun.uf_isnull(ls_find) then

ls_find = "(" + ls_col[ll_index] + "=" + of_getstring(la_data_s[ll_index], ls_type[ll_index]) + ")"

else

ls_find = ls_find + " and (" + ls_col[ll_index] + "=" + of_getstring(la_data_s[ll_index], ls_type[ll_index]) + ")"

end if

if gnv_fun.uf_isnull(ls_keycontent[ll_row_s]) then

ls_keycontent[ll_row_s] = ls_coltext[ll_index]+":"+of_getstring(la_data_s[ll_index], ls_type[ll_index])

else

ls_keycontent[ll_row_s] = ls_keycontent[ll_row_s]+","+ls_coltext[ll_index]+":"+of_getstring(la_data_s[ll_index], ls_type[ll_index])

end if

end if

next

ll_find = this.find( ls_find , 1, this.rowcount())

//find > 0 -->edit

If ll_find > 0 and ll_find <= this.rowcount( ) then

for ll_index = 1 to ll_colcnt

la_data_t[ll_index] = this.of_getitem( ll_find, ll_index, ls_type[ll_index])

If (la_data_s[ll_index] <> la_data_t[ll_index]) or &

(isNull(la_data_s[ll_index]) and Not isNull(la_data_t[ll_index])) or &

(Not isNull(la_data_s[ll_index]) and isNull(la_data_t[ll_index])) then

If gnv_fun.uf_isNull(ls_modi[ll_row_s]) then

ls_modi[ll_row_s] = ls_coltext[ll_index]+":"+of_getstring(la_data_s[ll_index], ls_type[ll_index])+" -> " + of_getstring(la_data_t[ll_index], ls_type[ll_index])

else

ls_modi[ll_row_s] = ls_modi[ll_row_s] + ","+ls_coltext[ll_index]+":"+of_getstring(la_data_s[ll_index], ls_type[ll_index])+" -> " + of_getstring(la_data_t[ll_index], ls_type[ll_index])

end if

ls_modicol[Upperbound(ls_modicol) + 1] = ls_coltext[ll_index]

end if

next

//find = 0 -->delete

else

for ll_index = 1 to ll_colcnt

If gnv_fun.uf_isNull(ls_modi[ll_row_s]) then

ls_modi[ll_row_s] = ls_coltext[ll_index]+":"+of_getstring(la_data_s[ll_index], ls_type[ll_index])+" -> [Null]"

else

ls_modi[ll_row_s] = ls_modi[ll_row_s] + ","+ls_coltext[ll_index]+":"+of_getstring(la_data_s[ll_index], ls_type[ll_index])+" -> [Null]"

end if

ls_modicol[Upperbound(ls_modicol) + 1] = ls_coltext[ll_index]

next

end if

//modi content

If not gnv_fun.uf_isnull( ls_modi[ll_row_s]) then

if gnv_fun.uf_isnull( ls_modicontent ) then

ls_modicontent = ls_keycontent[ll_row_s] + "~t" + ls_modi[ll_row_s]

else

ls_modicontent = ls_modicontent + "~r~n" + ls_keycontent[ll_row_s] + "~t" + ls_modi[ll_row_s]

end if

end if

next

//target-->source

ll_rowcnt_t = this.rowcount( )

for ll_row_t = 1 to ll_rowcnt_t

ls_keycontent[ll_row_t] = ''

ls_modi[ll_row_t] = ''

ls_find = ''

//get col name(key name) and value

for ll_index = 1 to ll_colcnt

la_data_t[ll_index] = of_getitem( ll_row_t, ll_index, ls_type[ll_index])

If ls_key[ll_index] = "yes" then

If gnv_fun.uf_isnull(ls_find) then

ls_find = "(" + ls_col[ll_index] + "=" + of_getstring(la_data_t[ll_index], ls_type[ll_index]) + ")"

else

ls_find = ls_find + " and (" + ls_col[ll_index] + "=" + of_getstring(la_data_t[ll_index], ls_type[ll_index]) + ")"

end if

if gnv_fun.uf_isnull(ls_keycontent[ll_row_t]) then

ls_keycontent[ll_row_t] = ls_coltext[ll_index]+":"+of_getstring(la_data_t[ll_index], ls_type[ll_index])

else

ls_keycontent[ll_row_t] = ls_keycontent[ll_row_t]+","+ls_coltext[ll_index]+":"+of_getstring(la_data_t[ll_index], ls_type[ll_index])

end if

end if

next

ll_find = lds_source.find( ls_find , 1, lds_source.rowcount())

//find > 0 -->have done

If ll_find > 0 and ll_find <= this.rowcount( ) then

//find = 0 -->new

else

for ll_index = 1 to ll_colcnt

if not isnull(la_data_t[ll_index]) then

If gnv_fun.uf_isNull(ls_modi[ll_row_t]) then

ls_modi[ll_row_t] = ls_coltext[ll_index]+": [Null] -> " +of_getstring(la_data_t[ll_index], ls_type[ll_index])

else

ls_modi[ll_row_t] = ls_modi[ll_row_t] + ","+ls_coltext[ll_index]+": [Null] -> " +of_getstring(la_data_t[ll_index], ls_type[ll_index])

end if

ls_modicol[Upperbound(ls_modicol) + 1] = ls_coltext[ll_index]

end if

next

end if

//modi content

if not gnv_fun.uf_isnull( ls_modi[ll_row_t] ) then

if gnv_fun.uf_isnull( ls_modicontent ) then

ls_modicontent = ls_keycontent[ll_row_t] + "~t" + ls_modi[ll_row_t]

else

ls_modicontent = ls_modicontent + "~r~n" + ls_keycontent[ll_row_t] + "~t" + ls_modi[ll_row_t]

end if

end if

next

int i,j

boolean lb_exist

for i = 1 to Upperbound(ls_modicol)

lb_exist = false

for j = 1 to UpperBound(as_modicol)

If ls_modicol[i] = as_modicol[j] then

lb_exist = true

exit

End If

next

If not lb_exist then as_modicol[Upperbound(as_modicol)+1] = ls_modicol[i]

next

return ls_modicontent

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有