在Xamarin.iOS專案中使用預設資料庫

大學霸發表於2018-08-24

在Xamarin.iOS專案中使用預設資料庫

當開發者準備好一個預設資料庫檔案後,就可以將這個資料庫檔案新增到建立的專案中了。本節將分別在 Xamarin.iOS Xamarin.Android 專案中使用預設資料庫。

Xamarin.iOS 專案中使用

Xamarin.iOS 專案中使用預設資料庫的具體操作步驟如下:

1 )建立一個 Xamarin.iOS 專案,如 iOSSQLiteDemo

2 )將上一節中建立的 Documents.db 資料庫拖動 iOSSQLiteDemo 專案的 Resources 資料夾中。

3 )開啟 ViewController.cs 檔案,將 Documents.db 資料庫複製到或移動到 Documents 目錄下,程式碼如下:

using Foundation;
using System;
using System.IO;
using UIKit;
namespace iOSSQLiteDemo
{
    public partial class ViewController : UIViewController
    {
                   public ViewController (IntPtr handle) : base (handle)
                   {
                   }
 
                   public override void ViewDidLoad ()
                   {
                            base.ViewDidLoad ();
            // Perform any additional setup after loading the view, typically from a nib.
            var projectBundle = NSBundle.MainBundle;
            var resourcePath = projectBundle.PathForResource("Documents", "db");
            var dirManager = NSFileManager.DefaultManager;
            string sqlitePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "MyDocuments.db");
            Console.WriteLine("資料庫檔案目錄:{0}", sqlitePath);
            NSError er = new NSError();
            dirManager.Copy(resourcePath, sqlitePath, out er);                             //複製
        }
        public override void DidReceiveMemoryWarning ()
                   {
                            base.DidReceiveMemoryWarning ();
                            // Release any cached data, images, etc that aren't in use.
                   }
    }
}

執行程式後,會在輸出視窗輸出以下的內容:

資料庫檔案目錄: /Users/mac/Library/Developer/CoreSimulator/Devices/77752D53-9F0F-400C-89BD-A88D1EFD910C/data/Containers/Data/Application/DBD889F8-BB9A-423A-A729-E659A794B18B/Documents/MyDocuments.db


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29597077/viewspace-2212723/,如需轉載,請註明出處,否則將追究法律責任。

相關文章