如何将数据库文件夹更改为我在具有现有数据库文件的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
}