急求方法:c# 调用sybase 数据库存储过程,取不到返回值,请高手指点哈
驱动用的 oledb,
存储代码:
create proc use_deptparentno
@userno varchar(8),
@deptparentno char(4) output
as
begin
declare @parentDeptno char(4)
declare @deptno char(4)
declare @levelId int
declare @count int
set @count=1
select @deptno=deptno from t_user_d where userno=@userno
select @levelId=levelid from t_dept where deptno=@deptno
while(@count<=@levelId)
begin
select @deptno=case when deptparentno is null then deptno else deptparentno end from t_dept where deptno=@deptno
print @deptno
set @count=@count+1
end
set @deptparentno=@deptno
select deptno into #Pageing1 from t_dept where deptno=@deptno
select deptno from #Pageing1
end
调用代码:
string num = string.Empty;
OleDbParameter[] param = new OleDbParameter[] {
new OleDbParameter("@userno",OleDbType.VarChar,8,userno),
new OleDbParameter("@deptparentno",OleDbType.Char,4,ParameterDirection.ReturnValue,true,10,0,null,DataRowVersion.Default,num)
};
using (OleDbDataReader rd = OledbHelpDao.ExecuteReader(base.ConnStr, CommandType.StoredProcedure, "use_deptparentno", param))
{
if (rd.HasRows && rd.Read())
{
object o = rd.GetValue(0);
}
}
string ID = Convert.ToString(param[1].Value);
return num;
结果:datareader 的hasrows 为false
ID 的结果页是空字符串
[解决办法]
先在SYBASE中调试,看看是SP还是C#的问题
[解决办法]
sp是表示存储过程
[解决办法]
专门为了你这个问题,写了一篇短文。其实还是蛮简单的。
请看我的短文:
http://hi.baidu.com/hexiong/blog/item/748dbc3e6d525cf6828b13ad.html
[解决办法]
检查一下参数是否正确传递进去
[解决办法]
就是检查@userno、@deptparentno 这两个参数的值
[解决办法]
/* Name Address Tel
A Address Telphone (所影响的行数为 1 行) ----------- 1 (所影响的行数为 1 行)
*/ DotNet 部分(C#) --WebConfig 文件:
C#代码:(用到两个测试控件,DataGrid1(用于显示绑定结果集合),Lable(用于显示存储过程返回单值)
//添加数据库引用
代码
using System.Data.SqlClient;
...... private void Page_Load(object sender, System.EventArgs e)
{ // 在此处放置用户代码以初始化页面
String DBConnStr; DataSet MyDataSet=new DataSet();
System.Data.SqlClient.SqlDataAdapter DataAdapter=new System.Data.SqlClient.SqlDataAdapter();
DBConnStr=System.Configuration.ConfigurationSettings.AppSettings["ConnectString"];
System.Data.SqlClient.SqlConnection myConnection = new System.Data.SqlClient.SqlConnection(DBConnStr);
if (myConnection.State!=ConnectionState.Open)
{ myConnection.Open(); }
System.Data.SqlClient.SqlCommand myCommand = new System.Data.SqlClient.SqlCommand("P_Test",myConnection);
myCommand.CommandType=CommandType.StoredProcedure; //添加输入查询参数、赋予值
myCommand.Parameters.Add("@Name",SqlDbType.VarChar);
myCommand.Parameters["@Name"].Value ="A"; //添加输出参数
myCommand.Parameters.Add("@Rowcount",SqlDbType.Int);
myCommand.Parameters["@Rowcount"].Direction=ParameterDirection.Output;
myCommand.ExecuteNonQuery();
DataAdapter.SelectCommand = myCommand;
if (MyDataSet!=null)
{ DataAdapter.Fill(MyDataSet,"table"); }
DataGrid1.DataSource=MyDataSet; DataGrid1.DataBind(); //得到存储过程输出参数
Label1.Text=myCommand.Parameters["@Rowcount"].Value.ToString();
if (myConnection.State == ConnectionState.Open) { myConnection.Close();
}
}
----------------------------------------
运行以上代码即可(返回记录集合和存储过程返回值)
[解决办法]