일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- tensorflow
- windows10
- oracle
- 오라클
- M2M
- scrapy
- Serial
- django
- pymssql
- 파이썬
- PYTHON MSSQL
- matplot
- rs422
- Python
- rs485
- vscode
- sql developer
- Visual Studio Code
- 윈도우10
- MX Component
- 티스토리 초대장
- 자본주의
- 텐서플로우
- MSSQL
- 딥러닝
- MSSQL PYTHON
- MEAN Stack
- 크롤링
- 장고
- c#
Archives
- Today
- Total
안까먹을라고 쓰는 블로그
[C#] DataRow Copy 본문
반응형
// DataRow Copy
DataRow drH, sourceRow;
drH = _header.CurrentRow.Table.NewRow();
sourceRow = _header.CurrentRow.Table.Rows[0];
drH.ItemArray = sourceRow.ItemArray.Clone() as object[];
_header.ClearAndNewRow();
DataRow dr = _header.CurrentRow;
foreach (DataColumn dc in _header.CurrentRow.Table.Columns)
{
// 주문번호, 주문일자, 담당자, 주문구분, 매출구분, 배송구분, 영업그룹, TP_ORD 가 아니면 초기화
if (Array.IndexOf(new string[] { "NO_ORD", "DT_ORD", "NO_EMP", "NM_KOR", "FG_ORD", "FG_IV", "FG_DELIVERY", "CD_SALEGRP", "NM_SALEGRP", "TP_ORD" }, dc.ColumnName) > -1)
{
dr[dc.ColumnName] = drH[dc.ColumnName];
}
}
반응형
'Language > C#' 카테고리의 다른 글
[C#] 윈도우 서비스 프로젝트로 UI프로그램 실행하는 방법 & 화면 최상위로 올리기 (0) | 2022.06.29 |
---|---|
[C#] 프로세스 상태 체크 (0) | 2022.06.29 |
[C#] 컴파일러 오류번호로 문제사항 확인 및 조치 (0) | 2022.04.15 |
[C#] PivotGrid 사용하기 (Feat. DevExpress) (0) | 2022.04.06 |
[C#] C1FlexGrid - Edit Mode (0) | 2022.04.05 |
Comments