c#中如何从存储过程中获取结果

本文关键字:存储过程 过程中 获取 结果 存储 | 更新日期: 2023-09-27 18:17:16

我对c#完全陌生。我创建了一个有6条记录的小table。我想用store procedure获取这些记录。另外,我有两种简单的形式。一种是Main Form,用户可以输入Student Id,通过click on the find button得到结果。

GetStudentById

CREATE Procedure GetStudentById (@Id VARCHAR)
AS
BEGIN
    SELECT * FROM dbo.Students WHERE Id = @Id
END

我已经试着找到我自己的解决办法了。因为,我正在学习这个。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WinApp
{
    public partial class WinForm : Form
    {
        public WinForm()
        {
            InitializeComponent();
        }
        private void CloseBtn_Click(object sender, EventArgs e)
        {
            this.Close();
        }// End CloseBtn_Click
        private string getConnectionString()
        {
            string conStr = ConfigurationManager.ConnectionStrings["WinApp.Properties.Settings.WinPro_dbConnectionString"].ToString();
            return conStr;
        }
        private void FindBtn_Click(object sender, EventArgs e)
        {
            string SearchId = SearchInput.Text;
            SqlCommand cmd = null;
            using (SqlConnection con = new SqlConnection( getConnectionString() ))
            {
                try
                {
                    con.Open();
                    cmd = new SqlCommand();
                    cmd.Connection = con;
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.CommandText = "GetStudentById";
                    cmd.Parameters.AddWithValue("@Id", SearchId);
                    cmd.ExecuteNonQuery();
                }
                catch (Exception ex)
                {
                    throw ex;
                }
                finally
                {
                    con.Close();
                    cmd = null;
                }
            }
        }// End FndBtn_Click
    }
}

以上代码从我的主要形式。

c#中如何从存储过程中获取结果

如何将该结果分配给array并分配给second viewform controls to edit the result ?
    SqlCommand cmd = null;
    using (SqlConnection con = new SqlConnection( getConnectionString() ))
    {
        try
        {
            con.Open();
            cmd = new SqlCommand();
            cmd.Connection = con;
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.CommandText = "GetStudentById";
            cmd.Parameters.AddWithValue("@Id", SearchId);
            SQLDataReader reader = cmd.ExecuteReader();
            // To make your code a bit more robust you should get
            // the indexes of the named columns...this is so that if
            // you modified the Schema of your database (e.g. you
            // added a new column in the middle, then it is more
            // resilient than using fixed value index numbers).
            int iId = oReader.GetOrdinal("Id");
            int iFirstname = oReader.GetOrdinal("Firstname");
            int iLastname = oReader.GetOrdinal("Lastname"); 
            while(reader.Read())
            {
                int id = reader.GetInt32(iId);
                string firstname = reader.GetString(iFirstname);
                string lastname = reader.GetString(iLastname);
                ....
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
        finally
        {
            con.Close();
            cmd = null;
        }
    }