一隻大菜鳥,最近要學習windows phone資料庫相關的知識,找到了一些比較簡短的教程進行學習,由於是英文的,順便給翻譯了。本身英語水平就不好,估計文中有不少錯誤,如果有不幸讀到的童鞋請保持對翻譯品質的質疑,多多指教。
這是原文地址:http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--How-to-Insert-data本文如下: 這是“windows phone mango本機資料庫(sqlce)”系列短片文章的第十二篇。 為了讓你開始在Windows Phone Mango中使用資料庫,這一系列短片文章將覆蓋所有你需要知道的知識點。我將談談在windows phone mango本機資料庫裡怎麼插入資料。
插入資料到資料庫是一個兩個步驟的過程。首先使用InsertOnSubmit 方法添加一個對象到DataContext,然後調用DataContext的SubmitChanges 方法來將儲存資料作為資料庫中的行。
注釋:直到SubmitChanges調用後資料才真正儲存到資料庫中。1、怎麼插入資料 在開始之前,假設我們有下面兩張表的資料庫結構:Country和City
1 [Table] 2 public class Country 3 { 4 //... 5 } 6 7 8 [Table] 9 public class City10 {11 //...12 }
DataContext如下所示:
1 public class CountryDataContext : DataContext 2 { 3 public CountryDataContext(string connectionString) 4 : base(connectionString) 5 { 6 } 7 8 public Table<Country> Countries 9 {10 get11 {12 return this.GetTable<Country>();13 }14 }15 16 public Table<City> Cities17 {18 get19 {20 return this.GetTable<City>();21 }22 }23 }
在下面的程式碼範例中,我們將示範這個過程,解釋上面的被裝箱以及插入兩個新的關聯性物件(city和country)到資料庫中。首先,我們建立一個新的country執行個體,然後添加到context中(使用InsertOnSubmit 方法)。接下來,我們建立一個city執行個體,分配到我們剛建立的country執行個體,然後添加到context中。最後,我們調用SubmitChanges 方法儲存這些變化到資料庫中。
1 private void AddCity() 2 { 3 using (CountryDataContext context = new CountryDataContext(ConnectionString)) 4 { 5 // create a new country instance 6 Country country = new Country(); 7 country.Name = "Spain"; 8 // add the new country to the context 9 context.Countries.InsertOnSubmit(country);10 11 // create a new city instance12 City city = new City();13 city.Name = "Barcelona";14 // assing country15 city.Country = country;16 // add the new city to the context17 context.Cities.InsertOnSubmit(city);18 19 // save changes to the database20 context.SubmitChanges();21 }22 }
這篇文章我談論了在windows phone mango本機資料庫插入資料。請繼續關注接下來的文章。
這是原文地址:http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--How-to-Insert-data