[42809从Asp.Net C#应用程序执行PostgreSQL存储过程时出错

问题描述 投票:0回答:1

我正在将PostgreSQL pgadmin4(4.16v)与ASP.NET应用程序一起使用。我创建了一个如下定义的过程:

CREATE OR REPLACE PROCEDURE public.usp_bind(
    )
LANGUAGE 'plpgsql'

AS $BODY$
BEGIN
      select district_id,district_name from district_master order by district_name;
END;
$BODY$;

我从asp.net应用程序调用了上面的过程,代码如下:

NpgsqlConnection conn = new NpgsqlConnection();
        NpgsqlDataAdapter da = new NpgsqlDataAdapter();
        NpgsqlCommand cmd = new NpgsqlCommand();
        DataSet ds = new DataSet();
        public string dbconstr = dbConnectstr.Connectionstring();

        public DataSet getDatafunction(string procedure_, [Optional] string flag_)
        {
            using (conn = new NpgsqlConnection(dbconstr))
            {
                //conn.Open();
                using (da = new NpgsqlDataAdapter())
                {

                    da.SelectCommand.CommandType = CommandType.StoredProcedure;
                    da.SelectCommand.CommandText = "CALL usp_bind";
                    da.SelectCommand.Connection = conn;


                    using (ds = new DataSet())
                    {
                        da.Fill(ds);
                    }
                }
                //conn.Close();
            }
            return ds;
        }

它给我一个错误,因为-42809:'usp_bind'是一个过程。

我也可以使用CALL方法来调用它,但是没有用。从ASP.NET应用程序调用过程的确切方法是什么?

postgresql procedure npgsql
1个回答
0
投票

不要在命令上设置CommandType.StoredProcedure

不幸的是,存储过程是新的,并且已经使用CommandType.StoredProcedure来调用functions,并且在这一点上进行更改将是一个重大的突破。

© www.soinside.com 2019 - 2024. All rights reserved.