Skip to content

Instantly share code, notes, and snippets.

@tetya
Created April 20, 2016 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tetya/f127735ffa080182dc873113d3fcf51d to your computer and use it in GitHub Desktop.
Save tetya/f127735ffa080182dc873113d3fcf51d to your computer and use it in GitHub Desktop.
抜粋
public void Select(){
//データーベースにアクセス
SqliteDatabase sqlDB = new SqliteDatabase("save.db");
//上書き
string query = "update User set selectingID = " + id.ToString();
sqlDB.ExecuteNonQuery(query);
//ヘッダーの更新
header.ChangeID (id);
//メニューの操作
menue.ClickMuenuButton();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment