如何在UWP中使用预先填充的sqlite数据库?

时间:2016-11-14 14:33:04

标签: sqlite xamarin visual-studio-2015 uwp xamarin.uwp

这是我第一次使用Visual Studio 2015制作跨平台应用程序。在网上提供的教程帮助下,我能够在UWP(Xamarin Forms)中使用SQLite。但是,我不知道如何复制预先填充的sqlite数据库并使用它?

我的代码示例是 -

using Medical_Study.UWP;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.Storage;
using Xamarin.Forms;

[assembly: Dependency(typeof(SqliteService))]

namespace Medical_Study.UWP
{

    public class SqliteService : ISQLite
    {
        public SqliteService()
        {
        }
        #region ISQLite implementation
        public SQLite.SQLiteConnection GetConnection()
        {
            var sqliteFilename = "QBank.db";
            string path = Path.Combine(ApplicationData.Current.LocalFolder.Path, sqliteFilename);
            var conn = new SQLite.SQLiteConnection(path);

            // Return the database connection 
            return conn;
        }
        #endregion
    }
}

1 个答案:

答案 0 :(得分:1)

要部署预先填充的SQLite DB“QBank.db”,您可以将其编译为应用程序的嵌入式资源,并在首次运行时将其复制到LocalFolder以供进一步使用。

为此,请在项目中添加“QBank.db”并选择Build Action -> Embedded Resource

GetConnection()方法可以像这样实现:

public SQLite.SQLiteConnection GetConnection()
{
  var sqliteFilename = "QBank.db";

  var assembly = GetType().GetTypeInfo().Assembly;
  var qbankDbResource 
    = assembly.GetManifestResourceNames().FirstOrDefault(name => name.EndsWith(sqliteFilename));
  if (qbankDbResource == null)
  {
    Debug.Assert(false, string.Format("{0} database is not included as embedded resource", sqliteFilename));
    return null;
  }

  string path = Path.Combine(ApplicationData.Current.LocalFolder.Path, sqliteFilename);
  using (var qbankDbStream = assembly.GetManifestResourceStream(qbankDbResource))
  using (var fStream = new FileStream(path, FileMode.Create, FileAccess.Write))
  {
    qbankDbStream.CopyTo(fStream);
  }

  var conn = new SQLite.SQLiteConnection(path);
  // Return the database connection 
  return conn;
}