These query results are not updateable.Include the ROWID...

These query results are not updateable.Include the ROWID..._第1张图片

http://www.zlsoft.com/techbbs/Archive_view.asp?boardID=62&ID=3562

很明显楼主点过\'锁\'(Edit Data)那个图标,提示已经很明显,你要进入编辑模式的话,必须使用:select * from zlhis.药品供应商 for update

在SQL WINDOW中要想编辑查询出来的数据.用


select * from yourtablename for update 


然后解除锁定就可以了.


你应该是用没有加 for update的语句查询出结果,又点击解除锁定(即edit data按钮)就会出现这个提示.

==================================================================

http://www.blogjava.net/3ant/archive/2010/01/06/308471.html

----------------------
select * from chenxxlevel where usercode = '0000000001' for update;--若这条语句不能修改的话,要加RowID,如下这条sql:
select c.*,c.rowid from chenxxlevel c where usercode = '0000000001' for update;--即可。

实在不行直接update
update chenxxlevel set comcode='31000000' where usercode='0000000001';

 

转自:http://hi.baidu.com/test2704/blog/item/e22fb00d11d5a18cd1581bf1.html

 

你可能感兴趣的:(sql,C++,c,asp.net,asp)