摘要:
数据库中的存储过程CREATE PROCEDURE [dbo].[Proc_deleteStuByNo] -- Add the parameters for the stored procedure here@stuNo char(7),@result int outputASBEGINSET NOCOUNT ON;delete from studinfo where StudNo=@stuNoset @result=@@rowcountENDjava中调用存储过程:String stuno="a1";int result=0;Connection connection = 阅读全文
posted @ 2012-08-20 17:33
aparche
阅读(393)
评论(0)
推荐(0)
浙公网安备 33010602011771号