我有行的ID然後我會更新其他值。如何在Windows 10 C#中更新sqlite.net pcl中的行?
我不知道如何更新我的價值! 我的表:
class MyTable
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string Date { get; set; }
public string Volumes { get; set; }
public string Price { get; set; }
}
其他信息:
string path;
SQLite.Net.SQLiteConnection conn;
public updatepage()
{
this.InitializeComponent();
path = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "ccdb.sqlite");
conn = new SQLite.Net.SQLiteConnection(new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT(), path);
conn.CreateTable<MyTable>();
}
請參考這篇文章http://blog.tpcware.com/2014/05/universal-app-with-sqlite-part-2/雖然它說通用應用程序,但我認爲它也適用於Windows 10應用程序。 – Janak