sql语句错误(50分)

  • 主题发起人 主题发起人 Athlon Chen
  • 开始时间 开始时间
A

Athlon Chen

Unregistered / Unconfirmed
GUEST, unregistred user!
quary的sql中写如下命令:
update stock
set quantity=(select quantity
from reckon
where reckon.'no'=stock.'no')
执行时报错:"Error Creating Cursor handle"
请教各位是怎么回是,如何改正。
 
用query.execute试试;
别用query.open;
 
用query.execute
update语句没有数据返回,
所以不能用open方法打开
 
update stock
set quantity=(select quantity
from reckon
where reckon.no=stock.no)

执行时用query.execute
 
多人接受答案了。
 

Similar threads

I
回复
0
查看
446
import
I
I
回复
0
查看
974
import
I
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部