gpt4 book ai didi

database - 找不到数据库文件。检查数据库的路径。 Windows Phone 7 中的数据源

转载 作者:搜寻专家 更新时间:2023-10-30 20:18:36 25 4
gpt4 key购买 nike

我已经在 Windows Phone 7 中创建了数据库,它运行良好

重建应用程序后它说

The database file cannot be found. Check the path to the database. [ Data Source = \Applications\Data\6157CB94-31D3-4E6F-BFC3-78BE1549C10A\Data\IsolatedStore\amit.sdf ]

我的数据库字符串代码是

` private const string Con_String = @"isostore:/amit.sdf";`

如何解决这个问题请给我任何解决这个问题的建议

最佳答案

你检查过这个样本了吗How to create a basic local database app for Windows Phone

他们使用这个路径来创建数据库

//Specify the connection string as a static, used in main page and app.xaml.
public static string DBConnectionString = "Data Source=isostore:/ToDo.sdf";

也不要忘记检查数据库是否存在

//Create the database if it does not exist.
using (ToDoDataContext db = new ToDoDataContext(ToDoDataContext.DBConnectionString))
{
if (db.DatabaseExists() == false)
{
//Create the database
db.CreateDatabase();
}
}

关于database - 找不到数据库文件。检查数据库的路径。 Windows Phone 7 中的数据源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19089885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com