本文重點講的是:ComboBox、DateTimePicker、TextBox、RadioButton、DataGridView這五種控件的輸入和輸出。sql
1、控件數據的輸入:數據庫
(1)ComboBox控件中的下拉列表中,能夠顯示多項數據,使用ComboBox控件中的Items集合的Add方法向控件中添加數據。以下圖:安全
(2)DateTimePicker控件,通常用於讓用戶能夠從日期列表中選擇單個值。運行時,單擊控件邊上的下拉箭頭,會顯示兩個部分:一個下拉列表,一個用於選擇日期。以下圖:服務器
(3)TextBox控件,即文本框,用於用戶輸入和顯示文本。輸入數據以下圖:函數
(4)RadioButton控件爲用戶提供由兩個或多個互斥選項組成的選項集,須要注意的是,當用戶選擇某單選按鈕時,同一組中的其餘單選按鈕不能同時選定。以下圖所示this
(5)DataGridView控件能夠顯示和編輯來自不一樣類型的數據源的表格數據,以下圖所示:spa
2、思惟導圖:3d
3、控件數據的輸出:code
上圖界面代碼以下:blog
SqlConnection sqlConnection = new SqlConnection(); //聲明並實例化SQL鏈接; sqlConnection.ConnectionString = "Server=(local);Database=Message;Integrated Security=sspi"; //在字符串變量中,描述鏈接字符串所需的服務器地址、數據庫名稱、集成安全性(便是否使用Windows驗證); SqlCommand sqlCommand = new SqlCommand(); //聲明並實例化SQL命令; sqlCommand.Connection = sqlConnection; //將SQL命令的鏈接屬性指向SQL鏈接 sqlCommand.CommandText = "SELECT * FROM DMESSAGE WHERE D_ID=@D_ID;"; //指定SQL命令的命令文本; sqlCommand.Parameters.AddWithValue("@D_ID", this.txt_id.Text.Trim()); SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(); //聲明並實例化SQL數據適配器,同時藉助構造函數,將其SelectCommand屬性設爲先前建立的SQL命令; sqlDataAdapter.SelectCommand = sqlCommand; //將SQL數據適配器的查詢命令屬性指向SQL命令; DataTable dengjiTable = new DataTable(); //聲明並實例化數據表,用於保存全部班級,以用做下拉框數據源; sqlConnection.Open(); //打開SQL鏈接; SqlDataReader sqlDataReader = sqlCommand.ExecuteReader(); //調用SQL命令的方法ExecuteReader來執行命令,並獲取數據閱讀器; if (sqlDataReader.Read()) //若數據閱讀器成功讀取到下一條記錄(首次查詢則表示第一條記錄); { this.txt_id.Text = sqlDataReader["D_ID"].ToString(); //在數據閱讀器的索引器中指定列名,從而訪問當前記錄的指定列的值,並賦予相應控件; this.txt_name.Text = sqlDataReader["DOCTOR"].ToString(); //this.cmb_Class.SelectedValue = (int)sqlDataReader["ClassNo"]; this.cmb_dengji.SelectedValue = sqlDataReader["DENGJI"]; this.txt_tel.Text = sqlDataReader["TEL"].ToString(); this.txt_address.Text = sqlDataReader["ADDRESS"].ToString(); this.cmb_keshi.SelectedValue = sqlDataReader["KESHI"]; this.txt_que.Text = sqlDataReader["QUESTION"].ToString(); this.txt_ans.Text = sqlDataReader["ANSWER"].ToString(); } sqlDataReader.Close(); //關閉數據閱讀器(同時關閉鏈接); }
SqlConnection sqlConnection = new SqlConnection(); //聲明並實例化SQL鏈接; sqlConnection.ConnectionString = "Server=(local);Database=Message;Integrated Security=sspi"; //在字符串變量中,描述鏈接字符串所需的服務器地址、數據庫名稱、集成安全性(便是否使用Windows驗證); SqlCommand sqlCommand = new SqlCommand(); //聲明並實例化SQL命令; sqlCommand.Connection = sqlConnection; //將SQL命令的鏈接屬性指向SQL鏈接; sqlCommand.CommandText = "SELECT * FROM PMESSAGE WHERE P_NAME=@P_NAME;"; //指定SQL命令的命令文本; sqlCommand.Parameters.AddWithValue("@P_NAME", this.txt_name.Text.Trim()); sqlConnection.Open(); //打開SQL鏈接; SqlDataReader sqlDataReader = sqlCommand.ExecuteReader(); //調用SQL命令的方法ExecuteReader來執行命令,並獲取數據閱讀器; if (sqlDataReader.Read()) //若數據閱讀器成功讀取到下一條記錄(首次查詢則表示第一條記錄); { this.txt_id.Text = sqlDataReader["P_ID"].ToString(); //在數據閱讀器的索引器中指定列名,從而訪問當前記錄的指定列的值,並賦予相應控件; this.txt_name.Text = sqlDataReader["P_NAME"].ToString(); this.rdb_male.Checked = (bool)sqlDataReader["SEX"]; this.dtp_birthdate.Value = (DateTime)sqlDataReader["DATE"]; this.txt_minzu.Text = sqlDataReader["MINZU"].ToString(); this.txt_marry.Text = sqlDataReader["HUNYIN"].ToString(); this.txt_job.Text = sqlDataReader["JOB"].ToString(); this.txt_address.Text = sqlDataReader["ADDRESS"].ToString(); this.txt_guomin.Text = sqlDataReader["GUOMIN"].ToString(); } sqlDataReader.Close();
SqlConnection sqlConnection = new SqlConnection(); sqlConnection.ConnectionString = "Server=(local);Database=Message;Integrated Security=sspi"; SqlCommand sqlCommand = sqlConnection.CreateCommand(); sqlCommand.CommandText = "select * from PMESSAGE"; sqlConnection.Open(); SqlDataAdapter da = new SqlDataAdapter(); da.SelectCommand = sqlCommand; DataSet d = new DataSet(); da.Fill(d, "PMESSAGE"); dataGridView1.DataSource = d; dataGridView1.DataMember = "PMESSAGE"; sqlConnection.Close();