如何在 Windows Phone 的 SqlCe 数据库中存储图像
不知道如何执行此操作,因为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用图像数据类型,请参阅此示例: http://erikej.blogspot.com/2009/11/how-to-save-and-retrieve-images-using.html
Use image data type, see this sample: http://erikej.blogspot.com/2009/11/how-to-save-and-retrieve-images-using.html
我建议采用以下方法:
1-如果您的图像不会很大,那么您可以将图像数据的 Base64 字符串作为字符串字段存储在数据库中。
2- 否则,您可以为图像(或数据库记录)分配唯一的 GUID 并将图像存储在isolatedStorageFile 中。
将在一分钟内添加代码
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.
2- otherwise you can assign your image (or database record) a unique GUID and store your image in IsolatedStorageFile.
will add code in a minute