我正在使用sqlite DB。我的DB位置是system.environmet.specialfolder.personal 那么如何访问这个文件夹
答案 0 :(得分:1)
以下是如何创建与System.Environment.SpecialFolder.Personal
中的SQLite数据库的连接:
public class SQLite_Android : ISQLite
{
public SQLiteConnection GetConnection()
{
string documentsPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
var path = Path.Combine(documentsPath, "mySQLite.db"); // change mySQLite.db for your SQLite db filename
// Create the connection
var conn = new SQLiteConnection(path);
// Return the database connection
return conn;
}
}
使用
public interface ISQLite
{
SQLiteConnection GetConnection();
}