/// <summary> /// Saves the tweet into the database /// </summary> void Insert(Database db) { db.Insert (this, "OR IGNORE"); }
public void Replace(Database db) { db.Insert (this, "OR REPLACE"); }