在IsolatedStorage中移动sqlite数据库

发布于 2024-12-12 11:18:46 字数 130 浏览 0 评论 0原文

我在项目的根目录中声明了一个 sqlite 数据库(属于 MainPage.xaml 等)。

我如何将此数据库放入IsolatedStorage?我现在似乎无法打开数据库,所以我认为这可能是因为它不在独立存储中。我怎样才能移动它?

I have a sqlite database declared in the root of my project (belongside MainPage.xaml etc.).

How can i place this database in IsolatedStorage? I can't seem to open the database now so i think it might be because it's not in Isolated Storage. How can i move it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋心╮凉 2024-12-19 11:18:46

这是我使用的代码:

IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication();

if (!isf.FileExists("my.db"))
{
    StreamResourceInfo sri = App.GetResourceStream(new Uri("my.db", UriKind.Relative));

    IsolatedStorageFileStream isfs = new IsolatedStorageFileStream("my.db", FileMode.Create, IsolatedStorageFile.GetUserStoreForApplication());

    long FileLength = (long)sri.Stream.Length;
    byte[] byteInput = new byte[FileLength];
    sri.Stream.Read(byteInput, 0, byteInput.Length);
    isfs.Write(byteInput, 0, byteInput.Length);

    sri.Stream.Close();
    isfs.Close();
} 

如果我没记错的话,您必须将数据库标记为“始终内容/复制”。

Here is the code I used:

IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication();

if (!isf.FileExists("my.db"))
{
    StreamResourceInfo sri = App.GetResourceStream(new Uri("my.db", UriKind.Relative));

    IsolatedStorageFileStream isfs = new IsolatedStorageFileStream("my.db", FileMode.Create, IsolatedStorageFile.GetUserStoreForApplication());

    long FileLength = (long)sri.Stream.Length;
    byte[] byteInput = new byte[FileLength];
    sri.Stream.Read(byteInput, 0, byteInput.Length);
    isfs.Write(byteInput, 0, byteInput.Length);

    sri.Stream.Close();
    isfs.Close();
} 

If I remember correctly, you have to mark your DB as Content/Copy Always.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文