2

我已经在 Windows Phone 7 中创建了数据库,它工作得很好

重建应用程序后,它说

找不到数据库文件。检查数据库的路径。[数据源 = \Applications\Data\6157CB94-31D3-4E6F-BFC3-78BE1549C10A\Data\IsolatedStore\amit.sdf]

我的数据库字符串代码是

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

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

4

1 回答 1

3

您是否检查过这个示例 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();
    }
 }
于 2013-10-01T23:20:43.950 回答