gpt4 book ai didi

c# - C#调用存储过程

转载 作者:行者123 更新时间:2023-12-02 15:39:20 25 4
gpt4 key购买 nike

我想使用 C# 调用存储过程。

我想为过程调用创建一个速记。

我仍然不想重新定义连接并打开它。如何创建方法 - 我仍然没有打开与数据库的连接?

我使用以下代码:

SqlConnection conn = null;
SqlDataReader rdr = null;

conn = new SqlConnection("");
conn.Open();

SqlCommand cmd = new SqlCommand("Procedure", conn);
cmd.CommandType = CommandType.StoredProcedure;

rdr = cmd.ExecuteReader();

while (rdr.Read())
{
}

最佳答案

我不知道我是否明白你在问什么,但你的意思是这样的:

public static SqlReader executeProcedure(SqlConnection oConn, string commandName, Dictionary<string, object> params)
{
SqlCommand comm = oConn.CreateCommand();
comm.CommandType = CommandType.StoredProcedure;
comm.CommandText = commandName;
if (params != null)
foreach(KeyValuePair<string, object> kvp in params)
comm.Parameters.Add(new SqlParameter(kvp.Key, kvp.Value));
return comm.ExecuteReader();
}

一个使用示例可能是

Dictionary<string, object> paras = new Dictionary<string, object>();
paras.Add("user_name", "Timmy");
paras.Add("date", DateTime.Now);
SqlReader results = executeProcedure(oConn, "sp_add_user", paras);
while (results.Read())
{
//do something with the rows returned
}
results.Close();

关于c# - C#调用存储过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10556354/

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