public override void appendTableFromBottom(string table_name, MailEntity mail) { IDbCommand dbcmd = getDbCommand(); dbcmd.CommandText = "INSERT INTO " + table_name + " ( " + KEY_ID + ", " + KEY_SIT + ", " + KEY_PLAYER + ", " + KEY_SPEAKER + ", " + KEY_SUBJECT + ", " + KEY_CONTENT + " ) " + "VALUES ( '" + mail._id + "', '" + mail._sitID + "', '" + mail._isPlayer + "', '" + mail._speaker + "', '" + mail._subject + "', '" + mail._content + "' )"; dbcmd.ExecuteNonQuery(); }
public virtual void appendTableFromBottom(string table_name, MailEntity Team) { Debug.Log(CodistanTag + "This function is not implemnted"); throw null; }