如何在 Windows Phone 的 SqlCe 数据库中存储图像

发布于 2024-11-26 04:41:36 字数 81 浏览 0 评论 0原文

不知道如何执行此操作,因为 Windows Phone 中没有 ado.net。如果您能向我展示一些代码和示例,我将不胜感激。

谢谢

not sure how to do this since there is no ado.net in Windows Phone. Would appreciate if you can show me some code and sample.

Thanks

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

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

发布评论

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

评论(2

你的呼吸 2024-12-03 04:41:36

我建议采用以下方法:

1-如果您的图像不会很大,那么您可以将图像数据的 Base64 字符串作为字符串字段存储在数据库中。

var base64String = Convert.ToBase64String(imageData); // and store this to database
var imageData = Convert.FromBase64String(imageDataString); // read image data from database

2- 否则,您可以为图像(或数据库记录)分配唯一的 GUID 并将图像存储在isolatedStorageFile 中。

using (var isf = IsolatedStorageFile.GetUserStoreForApplication())
{
    using (var writer = new BinaryWriter(new IsolatedStorageFileStream(filename, System.IO.FileMode.Create, isf)))
    {
        writer.Write(imageData);
    }
}

将在一分钟内添加代码

I would suggest to approaches:

1- If your images are not going to be very large, then you can store Base64 string of image data as a string field in database.

var base64String = Convert.ToBase64String(imageData); // and store this to database
var imageData = Convert.FromBase64String(imageDataString); // read image data from database

2- otherwise you can assign your image (or database record) a unique GUID and store your image in IsolatedStorageFile.

using (var isf = IsolatedStorageFile.GetUserStoreForApplication())
{
    using (var writer = new BinaryWriter(new IsolatedStorageFileStream(filename, System.IO.FileMode.Create, isf)))
    {
        writer.Write(imageData);
    }
}

will add code in a minute

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