gpt4 book ai didi

sqlite - 在Windows 8和SQLite Metro中使用我自己的数据库

转载 作者:行者123 更新时间:2023-12-03 17:54:56 24 4
gpt4 key购买 nike

我有一个要在使用SQLiteMetro的Windows8应用程序中使用的现有SQLite.db。我有一个使用以下示例的工作示例应用程序:

using SQLiteMetro; 

Database db =new Database(Path.Combine( Windows. Storage .ApplicationData. Current. LocalFolder. Path, "test.db"));


如何将自己的现有数据库(例如具有1000条记录的“ test.db”)添加到Win8 / Metro项目中,以便应用程序可以访问该数据库?

最佳答案

您可以将其置于应用的本地状态。 Apps本地状态文件夹默认位于%localappdata%\packages\<packageid>\LocalState中。

然后,您可以使用类似...的语法。

var root = Windows.Storage.ApplicationData.Current.LocalFolder.Path;
using (var db = new SQLiteConnection(Path.Combine(root, "test.db"))


关于 Sqlite for Windows 8 Metro style apps的好文章,以及有关 Application Data的更多信息。

关于sqlite - 在Windows 8和SQLite Metro中使用我自己的数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10793658/

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