您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何在Xamarin.iOS項目中使用預設數據庫的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
當開發者準備好一個預設數據庫文件后,就可以將這個數據庫文件添加到創建的項目中了。本節將分別在Xamarin.iOS和Xamarin.Android項目中使用預設數據庫。
在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
感謝各位的閱讀!關于“如何在Xamarin.iOS項目中使用預設數據庫”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。