如何引用Xamarin.Android中已存在的SQLite数据库?

时间:2018-01-12 12:13:32

标签: sqlite xamarin.android

我创建了SQLite数据库并将其复制到项目的根目录中:

enter image description here

数据库名为MobileSell.db。它出现在Visual Studio中:

enter image description here

我的问题是如何引用它以便之后我可以说connection.InsertIntoTableArticles(value)(这是伪代码)

1 个答案:

答案 0 :(得分:1)

You can refer to this.

实现它只有三个步骤:

1)创建与项目中Assets文件夹并行的Resources文件夹,将.db文件放入其中。

2)首次打开应用程序时,将.db文件复制到SDCard;

3)使用SQLite.SQLiteConnection(path)打开你的.db并查询它。