0

我正在使用 C# Xaml 中的 Windows 商店 (8.1) 应用程序来使用带有 mbtiles 文件的 C# 扩展的 Bing Maps 生成地图,我已经使用项目 Portable Basemap Server 来完成这项工作,但现在我正在尝试访问mbtiles 文件中的数据由我自己使用 SQLite。

我设法从 WPF 中的那种文件中获取图块,但我不知道如何在 Windows 商店项目中做到这一点;

我在 WPF 中的代码:

        SQLiteConnection _sqlcon;
        using (_sqlcon = new SQLiteConnection(String.Format("Data Source={0};Version=3;", "PATH_TO_MBTILES")))
        {
            _sqlcon.Open();
            SQLiteCommand cmd = new SQLiteCommand(string.Format("SELECT tile_data FROM tiles WHERE tile_column={0} AND tile_row={1} AND zoom_level={2}", 2, 5, 3), _sqlcon);
            object o = cmd.ExecuteScalar();

            if (o != null)
            {
                byte[] c = (byte[])o;
                using (MemoryStream stream = new MemoryStream(c))
                {
                    BitmapImage bmp = new BitmapImage();
                    bmp.BeginInit();
                    bmp.CacheOption = BitmapCacheOption.OnLoad;
                    bmp.StreamSource = stream;
                    bmp.EndInit();
                    img.Source = bmp;
                }
            }
        }

使用该代码,我在第 2 列第 5 行和缩放级别 3 处获得了磁贴。

但是在 Windows 商店应用程序中,当我尝试SQLiteConnection使用相同的文件创建一个 SQLiteException“无法打开数据库文件”时(我正在使用 NuGet sqlite-net 和用于 Windows 运行时 8.1 扩展的 sqlite)

我在 Windows Store App 中的代码:

        SQLiteConnection _sqlcon;
        using (_sqlcon = new SQLiteConnection(String.Format("Data Source={0};Version=3;", "PATH_TO_MBTILES"))) //SQLiteExeption here
        {
            SQLiteCommand cmd = new SQLiteCommand(string.Format("SELECT tile_data FROM tiles WHERE tile_column={0} AND tile_row={1} AND zoom_level={2}", 2, 5, 3), _sqlcon);
            byte[] o = cmd.ExecuteScalar<byte[]>();
            //etc...
        }

Visual Studio 的调试器将我发送到 sqlite-net NuGet 的 SQLite.cs 文件:

    public SQLiteConnection (string databasePath, SQLiteOpenFlags openFlags, bool storeDateTimeAsTicks = false)
    {
        if (string.IsNullOrEmpty (databasePath))
            throw new ArgumentException ("Must be specified", "databasePath");

        DatabasePath = databasePath;

#if NETFX_CORE
        SQLite3.SetDirectory(/*temp directory type*/2, Windows.Storage.ApplicationData.Current.TemporaryFolder.Path);
#endif

        Sqlite3DatabaseHandle handle;

#if SILVERLIGHT || USE_CSHARP_SQLITE
        var r = SQLite3.Open (databasePath, out handle, (int)openFlags, IntPtr.Zero);
#else
        // open using the byte[]
        // in the case where the path may include Unicode
        // force open to using UTF-8 using sqlite3_open_v2
        var databasePathAsBytes = GetNullTerminatedUtf8 (DatabasePath);
        var r = SQLite3.Open (databasePathAsBytes, out handle, (int) openFlags, IntPtr.Zero);
#endif

        Handle = handle;
        if (r != SQLite3.Result.OK) {
            throw SQLiteException.New (r, String.Format ("Could not open database file: {0} ({1})", DatabasePath, r));
        }
        _open = true; // Debugger Stops here !

        StoreDateTimeAsTicks = storeDateTimeAsTicks;

        BusyTimeout = TimeSpan.FromSeconds (0.1);
    }

我在 WPF 中找到了许多 mbtiles 文件的示例,但在 Windows 商店应用程序中没有。

Windows 商店开发的 SQLite 扩展是否支持 MBTiles 文件作为数据库?如果是,我做错了什么?

4

1 回答 1

0

Windows 应用商店应用只能访问它们自己的目录,不能访问管理员用户的私有文件。

阅读文档,但您可能希望将数据安装为应用程序的一部分。

于 2015-04-10T13:22:23.907 回答