어댑터는 어떻게 저장 프로세스를 사용합니까?

2793 단어 저장 프로세스
 1             SqlConnection conn = new SqlConnection("Data Source=SHILONGWEI;Initial Catalog=Test;Integrated Security=True");
 2             SqlCommand cmd = new SqlCommand("proc_getpubstable", conn);  //       
 3             cmd.CommandType = CommandType.StoredProcedure;   //      
 4             //cmd.Parameters.Add("@table_name", SqlDbType.NVarChar).Value = "userName";
 5             SqlParameter para1 = new SqlParameter("@table_name", SqlDbType.NVarChar, 50); //            
 6             cmd.Parameters.Add(para1);
 7             para1.Value="userName";
 8             DataSet ds = new DataSet();  
 9             conn.Open();  
10             SqlDataAdapter dap = new SqlDataAdapter();
11             dap.SelectCommand = cmd;
12             dap.Fill(ds);
13             conn.Close();
14             GridView1.DataSource = ds;
15             GridView1.DataBind();

좋은 웹페이지 즐겨찾기