当我尝试调用提供空参数的 Sybase 存储过程时出现错误。
我写了一个沙箱(见下面的代码)
当我运行代码时,我得到“不支持的参数类型”异常。代码工作的唯一方法是删除 null 参数(默认为 null BTW),但这对我来说不是一个选项,因为代码包含在一个混乱的 ORM 中。
我正在使用 Sybase.AdoNet2.AseClient v 1.15.346.0。sybase 数据库版本是 12.5.4,如果您能帮助我,我会很高兴。谢谢和问候,伯纳贝
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Sybase.Data.AseClient;
namespace SybaseSPParamNulo
{
class Program
{
static void Main(string[] args)
{
string cnxString = @"Data Source=192.168.0.8;Port=5000;Database=PiaSigna;Uid=sa;Pwd=123456;";
Sybase.Data.AseClient.AseConnection cnx = new AseConnection(cnxString);
AseCommand cmd = new AseCommand("sp_sectores_por_sucursal");
cmd.CommandType = System.Data.CommandType.StoredProcedure;
AseParameter p = new AseParameter("@suc", DBNull.Value );
cmd.Parameters.Add(p);
cnx.Open();
cmd.Connection = cnx;
cmd.ExecuteReader();
cnx.Close();
}
}
}
The following is the SP
CREATE procedure [dbo].[sp_sectores_por_sucursal]
@suc numeric(4)=NULL
AS
select s.CODSEC,DESC_SEC from GYF_SECTORES s
join SUCURSAL_SECTORES ss on ss.CODSEC=s.CODSEC
where (NNSUCURSAL_ID=@suc)
IF @@ERROR <> 0
RETURN 1
RETURN 0