powerbuilder开发数据库时,在ASA数据库中怎么创建存储过程?详细点
1个回答
展开全部
写存储过程和用什么开发工具没有关系的
ASA数据库你看看过程是怎么建立的就行了
以sql server为例
create procedure usp_pro_name
@id int
as
select * from table_name where id = @id
这样的过程在PB里数据窗口调用写法为:exec usp_pro_name @id =:id (这个id为retrieve参数)
如果在代码中调用写法为:
declare usp_pro_name_i procedure for usp_pro_name
@id = :id
execute usp_pro_name_i;
if sqlca.sqlcode = -1 then
rollback;
messagebox('提示信息','出错!')
return
end if
ASA数据库你看看过程是怎么建立的就行了
以sql server为例
create procedure usp_pro_name
@id int
as
select * from table_name where id = @id
这样的过程在PB里数据窗口调用写法为:exec usp_pro_name @id =:id (这个id为retrieve参数)
如果在代码中调用写法为:
declare usp_pro_name_i procedure for usp_pro_name
@id = :id
execute usp_pro_name_i;
if sqlca.sqlcode = -1 then
rollback;
messagebox('提示信息','出错!')
return
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询