gpt4 book ai didi

c# - 执行带有参数postgresql的存储过程

转载 作者:行者123 更新时间:2023-11-29 12:54:50 25 4
gpt4 key购买 nike

我的 Npgsql 版本 3.2.5 - Postgresql 9.6

我在使用 CommandType.StoredProcedure 时遇到此错误(但 CommandType.Text 有效):

Npgsql.PostgresException: '42883: function customer_select(pEmail => text, Password => text) does not exist'

string sql3 = @"customer_select";

NpgsqlConnection pgcon = new NpgsqlConnection(pgconnectionstring);
pgcon.Open();
NpgsqlCommand pgcom = new NpgsqlCommand(sql3, pgcon);
pgcom.CommandType = CommandType.StoredProcedure;
pgcom.Parameters.AddWithValue(":pEmail", "myemail@hotmail.com");
pgcom.Parameters.AddWithValue(":pPassword", "eikaylie78");
NpgsqlDataReader pgreader = pgcom.ExecuteReader();

while (pgreader.Read()) {
string name = pgreader.GetString(1);
string surname = pgreader.GetString(2);
}

这是数据库中的函数:

CREATE OR REPLACE FUNCTION public.customer_select(
pemail character varying, ppassword character varying)
RETURNS SETOF "CustomerTest"
LANGUAGE 'plpgsql'
COST 100.0
AS $function$
BEGIN
RETURN QUERY
SELECT "CustomerTestId", "FirstName", "LastName", "Email", "Password"
FROM public."CustomerTest"
WHERE "Email" = pEmail AND "Password" = pPassword;
END;
$function$;
ALTER FUNCTION public.customer_select(character varying, character varying)
OWNER TO postgres;

最佳答案

Npgsql 确实支持命名参数,但是你的参数大小写与你的函数不匹配,尝试使用 pemail 而不是 pEmailppassword而不是 pPassword

请注意,与使用 Npgsql 的 CommandType.Text 相比,使用 CommandType.StoredProcedure 并没有特别的优势 - 两者最终都会做同样的事情。 CommandType.StoredProcedure主要是为了方便从SqlServer等移植代码

关于c# - 执行带有参数postgresql的存储过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46112835/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com