這篇文章給大家分享的是有關(guān)如何在Xamarin.iOS項(xiàng)目中使用預(yù)設(shè)數(shù)據(jù)庫的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)公司是一家專注于成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)與策劃設(shè)計(jì),岳普湖網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:岳普湖等地區(qū)。岳普湖做網(wǎng)站價(jià)格咨詢:028-86922220當(dāng)開發(fā)者準(zhǔn)備好一個(gè)預(yù)設(shè)數(shù)據(jù)庫文件后,就可以將這個(gè)數(shù)據(jù)庫文件添加到創(chuàng)建的項(xiàng)目中了。本節(jié)將分別在Xamarin.iOS和Xamarin.Android項(xiàng)目中使用預(yù)設(shè)數(shù)據(jù)庫。
在Xamarin.iOS項(xiàng)目中使用預(yù)設(shè)數(shù)據(jù)庫的具體操作步驟如下:
(1)創(chuàng)建一個(gè)Xamarin.iOS項(xiàng)目,如iOSSQLiteDemo。
(2)將上一節(jié)中創(chuàng)建的Documents.db數(shù)據(jù)庫拖動(dòng)iOSSQLiteDemo項(xiàng)目的Resources文件夾中。
(3)打開ViewController.cs文件,將Documents.db數(shù)據(jù)庫復(fù)制到或移動(dòng)到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("數(shù)據(jù)庫文件目錄:{0}", sqlitePath); NSError er = new NSError(); dirManager.Copy(resourcePath, sqlitePath, out er); //復(fù)制 } public override void DidReceiveMemoryWarning () { base.DidReceiveMemoryWarning (); // Release any cached data, images, etc that aren't in use. } } }
運(yùn)行程序后,會(huì)在輸出窗口輸出以下的內(nèi)容:
數(shù)據(jù)庫文件目錄:/Users/mac/Library/Developer/CoreSimulator/Devices/77752D53-9F0F-400C-89BD-A88D1EFD910C/data/Containers/Data/Application/DBD889F8-BB9A-423A-A729-E659A794B18B/Documents/MyDocuments.db
感謝各位的閱讀!關(guān)于“如何在Xamarin.iOS項(xiàng)目中使用預(yù)設(shè)數(shù)據(jù)庫”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!