본문 바로가기
Application/C#.net

dataset 에 DataRow 추가하기

by 현이빈이 2008. 11. 11.
반응형

DataRow myRow;
        myRow = dbrec.Tables[0].NewRow();

        // Then add the new row to the collection.
        myRow[dbrec.Tables[0].Columns[0].ColumnName] = 0;
        myRow[dbrec.Tables[0].Columns[2].ColumnName] = "전체";
        dbrec.Tables[0].Rows.Add(myRow);

반응형