jsp获取存储过程的数据集!
我在数据库写了个存储过程,这个存储过程,查询一个表的所有数据!!!(没有输入参数和输出参数)在Jsp中我调用这个存储过程他会不会返回表中的所有数据?
我想知道的就是,在jsp我调用他会不会接到数据集!!!
if exists(select * from sysobjects where name='proce_bm_se')
drop procedure proce_bm_se
go
create procedure proce_bm_se
as
select * from t_bm
go
比如说我在jsp调用这个存储过程,这个存储过程会返回数据集吗?
[[it] 本帖最后由 qiuqiu2641847 于 2008-11-8 11:00 编辑 [/it]]