请输入您要查询的百科知识:

 

词条 SQLCode
释义

SQLCode:数据库操作的返回码,其中0--成功;-1--失败;100--没有检索到数据。

例如,IF SQLCA.SQLCode<>0 then

MessgeBox("连接失败","不能连接数据库")

RETURN

END IF

另外SQLCODE经常与SQLERRM连用

例如:

DBMS_OUTPUT.PUT_LINE(SQLCODE||'----'||SQLERRM);

example:

create   or   replace   procedure   tes   as  

sqlc   integer;  

begin  

insert   into   t1   values   (1);  

sqlc:=sqlcode;  

if   sqlc=0   then  

dbms_output.put_line('成功!');  

else  

dbms_output.put_line('失败!');  

end   if;  

end; 

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/3/1 19:31:34