public static bool UpdateGuildStringField(ulong serverId, string fieldToUpdate, string newValue) { var sqliteCommand = ServerDataConnection.CreateCommand(); try { sqliteCommand.CommandText = @$"UPDATE servers SET {fieldToUpdate} = '{newValue}' WHERE id is '{serverId}'"; sqliteCommand.ExecuteNonQuery(); return true; } catch { return false; } }