DarkEmu_GameServer.Systems.DbUpdateStats C# (CSharp) Метод

DbUpdateStats() публичный Метод

public DbUpdateStats ( ) : void
Результат void
        public void DbUpdateStats()
        {
            try
            {
                MsSQL.InsertData("UPDATE character SET strength='" + this.Character.Stat.Strength + "' , intelligence='" + this.Character.Stat.Intelligence + "' , hp='" + Character.Stat.Hp + "' , mp='" + this.Character.Stat.Mp + "' WHERE name='" + this.Character.Information.Name + "'");
            }
            catch (Exception ex)
            {
                Systems.Debugger.Write(ex);
            }
        }
Systems