역시나 예제가 매우 허접스러워 죄송합니다... ㅡ.,ㅡ
Thread[] th = new Thread[3];
for (int i = 0; i < th.Length; i++)
{
th[i] = new Thread(new ParameterizedThreadStart(RunScheDule));
}
foreach (Thread thread in th)
{
thread.Start("TABLENAME" + "|" + "SELECTQUERY");
}
foreach (Thread thread in th)
{
thread.Join();
}
'C# > WindowsForm' 카테고리의 다른 글
DataTable에 Column PrimaryKey 설정 (0) | 2013.08.02 |
---|---|
List<T> 부분에 조건 요소 검색 및 존재 여부 확인 (0) | 2013.08.02 |
텍스트 파일에 간단하게 로그 남겨보기 (0) | 2013.06.14 |
C# MS-SQL 데이터베이스의 특정테이블에 Bulk Insert 방법 (0) | 2013.06.13 |
간단하게 Mdi 부모폼,자식폼 만들어보기 (0) | 2013.03.26 |