コード例 #1
0
 /// <summary>
 ///    Saves the tweet into the database
 /// </summary>
 void Insert(Database db)
 {
     db.Insert (this, "OR IGNORE");
 }
コード例 #2
0
 public void Replace(Database db)
 {
     db.Insert (this, "OR REPLACE");
 }