数据更新的问题?
我在数据窗口中更改了一个数据,怎么样才能够把他更改到数据库中去呢?
代吗是:
long row_l , col_l
string str_rec
row_l=this.getclickedrow( )
col_l=this.getclickedcolumn( )
if row_l>0 and col_l>0 then
col_str=this.getitemstring( row_l, col_l) //获得点击的那一个数据
dw_1.accepttext()
dw_1.setitem( row_l , col_l , str_rec ) //str_rec为一个更新的数据
this.scrolltorow( row_l )
end if
谢谢啦.!