一隻大菜鳥,最近要學習windows phone資料庫相關的知識,找到了一些比較簡短的教程進行學習,由於是英文的,順便給翻譯了。本身英語水平就不好,估計文中有不少錯誤,如果有不幸讀到的童鞋請保持對翻譯品質的質疑,多多指教。
這是原文地址:http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--Creating-the-Database本文如下: 這是“windows phone mango本機資料庫(sqlce)”系列短片文章的第十篇。 為了讓你開始在Windows Phone Mango中使用資料庫,這一系列短片文章將覆蓋所有你需要知道的知識點。我將談談建立一個windows phone mango本機資料庫。
1、建立資料庫
在你建立了DataContext對象後,你可以建立本機資料庫並且執行一些額外的資料庫操作。
注釋:資料庫被創造後,它是自動分配的一個版本。為了確定資料庫版本,使用DatabaseSchemaUpdater 類。 參考:你可以看一看MSDN文檔:http://msdn.microsoft.com/zh-cn/library/hh202861(v=vs.92).aspx 樣本:
注釋: 在開始使用本機資料庫之前,它一定要存在。這就是為什麼在下面的代碼中我我們要檢查資料庫是否存在,如果不存在,我們要使用DataContext的CreateDatabase()方法建立資料庫。(注意連接字串要正確)
1 private const string ConnectionString = @"isostore:/CountryDB.sdf"; 2 3 public MainPage() 4 { 5 InitializeComponent(); 6 7 using (CountryDataContext context = new CountryDataContext(ConnectionString)) 8 { 9 10 if (!context.DatabaseExists())11 {12 // create database if it does not exist13 context.CreateDatabase();14 }15 }16 }
CountryDataContext 以下面的方式實現
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 }
重要的注釋:上面的樣本中,當調用CreateDatabase()時,資料庫會在IsolatedStorage中建立(注意連接字串中的isostore 關鍵字)。在widows phone 7中所有的應用程式都是相互“隔離”的,這意味著一個程式只能訪問它自己的IsolatedStorage,即一個資料庫只能被一個應用程式使用而不能在多個應用程式間共用。 這篇文章我談論了在windows phone mango建立本機資料庫。請繼續關注接下來的文章。
這是原文地址:http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--Creating-the-Database