在SQLite(UWP)中保存图像

时间:2015-12-10 14:50:43

标签: c# sqlite uwp

我在YouTube上关注了一些教程并找到了如何安装“SQLite for Universal Windows Platform”,我不得不在其中创建一个类:

[PrimaryKey,AutoIncrement]
public int ID { get; set; }
public string Content { get; set; }

用于保存文本。在我的MainPage.xaml.cs我与这个数据库建立了连接,如下面的

path = System.IO.Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "db.sqlite");
conn = new SQLite.Net.SQLiteConnection(new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT(),path);
conn.CreateTable<Message>();

然后我添加了一些文字(当我点击按钮时)

var add = conn.Insert(new Message() { Content = textBox.Text});

这一切都运行正常,但如何将图像(用户将从手机或桌面上传)存储到此数据库?

0 个答案:

没有答案