将数据保存到SQLite

时间:2014-05-27 13:20:46

标签: c# sqlite xaml

我对Windows 8应用程序完全陌生。我正在尝试将数据从我的应用程序保存到SQLite数据库。我在C#/ XAML写作。我有数据库设置,它存储硬编码数据,但我需要保存本地保存的图片数据。我在MainPage.xaml.cs页面上设置了按钮,但它们没有功能。

当我运行它时,它将数据保存到我的SQLite数据库,但是我无法使用我的应用程序上的按钮。有没有办法用按钮调用这个功能?

public void SaveData()
{
    using (var db = new SQLite.SQLiteConnection(DBPath))
    {
        // Empty the TableImages tables 
        //db.DeleteAll<TableImages>();

        //Add New Image
        var newImage = new TableImages()
                       {
                           //ID = newImage.Id,
                           imagePath = "c:\\My Images",
                           imageName = "testImage.jpg",
                           imageDate = "6/6/2014",
                           //binaryLargeImage = "Windows Store app"
                       };

        db.Insert(newImage);
    }
}

0 个答案:

没有答案