mysql 에서 데이터 조회해와야 하는데 한번에 받아오는 데이터개수가 몇십만개~몇백만개 이상일때도 있음 그럼 무작정 타임아웃나지않게 걸어두고 마냥 기다릴수는 없으니 페이징 처리해서 디비 id (auto increment) 값으로 10000개씩 받아오게 함 public class TestResult { public long id { get; set; } public string name { get; set; } public int score { get; set; } public DateTime time { get; set; } } static void Main(string[] args) { while (true) { using (var connection = new MySqlConnection("Serve..