GameFramework.DataDML.LoadAllTableGlobalData C# (CSharp) Method

LoadAllTableGlobalData() private static method

private static LoadAllTableGlobalData ( int start, int count ) : List
start int
count int
return List
        private static List<GeneralRecordData> LoadAllTableGlobalData(int start, int count)
        {
            List<GeneralRecordData> ret = new List<GeneralRecordData>();
            try {
              using (MySqlCommand cmd = new MySqlCommand()) {
                cmd.Connection = DBConn.MySqlConn;
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.CommandText = "LoadAllTableGlobalData";
                MySqlParameter inputParam;
                inputParam = new MySqlParameter("@_Start", MySqlDbType.Int32);
                inputParam.Direction = ParameterDirection.Input;
                inputParam.Value = start;
                cmd.Parameters.Add(inputParam);
                inputParam = new MySqlParameter("@_Count", MySqlDbType.Int32);
                inputParam.Direction = ParameterDirection.Input;
                inputParam.Value = count;
                cmd.Parameters.Add(inputParam);
                using (DbDataReader reader = cmd.ExecuteReader()) {
                  while (reader.Read()) {
                    GeneralRecordData record = new GeneralRecordData();
                    object val;
                    TableGlobalData msg = new TableGlobalData();
                    val = reader["Key"];
                    msg.Key = (string)val;
                    record.PrimaryKeys.Add(val.ToString());
                    val = reader["IntValue"];
                    msg.IntValue = (int)val;
                    val = reader["FloatValue"];
                    msg.FloatValue = (float)val;
                    val = reader["StrValue"];
                    msg.StrValue = (string)val;
                    record.DataVersion = (int)reader["DataVersion"];
                    record.Data = DbDataSerializer.Encode(msg);
                    ret.Add(record);
                  }
                }
              }
            } catch (Exception ex) {
              DBConn.Close();
              throw ex;
            }
            return ret;
        }