使用本地数据库文件(SQLite)

时间:2016-11-07 13:48:44

标签: sqlite windows-phone-8.1

如何将数据库文件夹更改为我在具有现有数据库文件的App文件夹中创建的文件夹。谢谢你的帮助。

public class SQLite_WinPhone81 : ISQLite
{
    public SQLite_WinPhone81()
    {
    }
    #region ISQLite implementation
    public SQLite.SQLiteConnection GetConnection()
    {
        var sqliteFilename = "xx.db3";
        string path = Path.Combine(ApplicationData.Current.LocalFolder.Path, sqliteFilename);

        var conn = new SQLite.SQLiteConnection(path);

        // Return the database connection 
        return conn;


    }
    #endregion
}

0 个答案:

没有答案