真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

WPF如何實現(xiàn)數(shù)據(jù)庫查詢

這篇文章主要介紹WPF如何實現(xiàn)數(shù)據(jù)庫查詢,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名申請、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、大武口網(wǎng)站維護(hù)、網(wǎng)站推廣。

 做一個簡單WPF連接數(shù)據(jù)庫的

控件類型和名稱:

DataGrid:dataGrid        
Button1  :Button1            
Button    :Button2             
TextBox :txtuserName

WPF如何實現(xiàn)數(shù)據(jù)庫查詢

 在引用App.config寫數(shù)據(jù)庫的連接字符串



  
 
 
 
 
 
 

                                

Data Source=.表示本機(jī),可以寫ip地址  initial Catalog=數(shù)據(jù)庫名  user=用戶名 Password=密碼;寫一個DataBaseHelper的數(shù)據(jù)庫類

namespace _03連接數(shù)據(jù)庫
{
 class DataBaseHelper
 {

 /// 數(shù)據(jù)庫打開連接的方法
 /// 
 /// 
 /// 
 public static SqlConnection getSqlConnection()
 {
 SqlConnection sqlConnection = new SqlConnection(); 
 try
 {
 //獲取數(shù)據(jù)庫字符串
 sqlConnection.ConnectionString = System.Configuration.ConfigurationSettings.AppSettings["ConnString"]; 
 sqlConnection.Open();
 sqlConnection.Close();
 }
 catch 
 {

 throw new Exception("無法連接數(shù)據(jù)庫
 /// 
 /// 
 public static int GetNonQueryEffect(string sqlstr)
 { 
 SqlConnection sqlConnection = new SqlConnection();
 try
 {
 sqlConnection.Open();
 //創(chuàng)建要執(zhí)行的語句
 SqlCommand cmd = new SqlCommand(sqlstr, sqlConnection);
 return cmd.ExecuteNonQuery();//返回執(zhí)行語句中的錯誤
 }
 catch (Exception ex)
 {
 throw new Exception(ex.ToString());
 
 }
 finally
 {
 sqlConnection.Close();
 sqlConnection.Dispose();//釋放資源
 }
 
 }

 /// 讀取數(shù)據(jù)的的方法 
 /// 
 /// 
 /// 
 /// 
 public static DataSet GetDataset(string sqlstr)
 {
 SqlConnection conn = getSqlConnection();
 try
 {
 conn.Open();//打開數(shù)據(jù)庫連接
 SqlDataAdapter sda = new SqlDataAdapter(sqlstr ,conn );//更新數(shù)據(jù)庫的命令
 DataSet ds = new DataSet();
 sda.Fill(ds);//填充
 return ds;
 }
 catch (Exception ex)
 {

 throw new Exception(ex.ToString ());
 }
 finally
 {
 conn.Close();
 conn.Dispose();
 }
 } 
 }
}

按鍵的代碼

private void Button_Click_1(object sender, RoutedEventArgs e)
 {
 string str = "select *FROM student";//查詢的語句
 dataGrid.ItemsSource = DataBaseHelper.GetDataset(str).Tables[0].DefaultView;
 
 }
 private void Button_Click_2(object sender, RoutedEventArgs e)
 {
 if (txtuserName.Text.Trim()== " ")
 {
 return;
 }
 string strr = string.Format("select *FROM student where sname='{0}'", txtuserName.Text);
 dataGrid.ItemsSource = DataBaseHelper.GetDataset(strr).Tables[0].DefaultView;
 }

以上是“WPF如何實現(xiàn)數(shù)據(jù)庫查詢”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章題目:WPF如何實現(xiàn)數(shù)據(jù)庫查詢
URL鏈接:
http://weahome.cn/article/jppdgh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部