Fly to the sky & Return

dataset 마지막 Row 값 알아내기 본문

프로그래밍/c# & VB 등

dataset 마지막 Row 값 알아내기

낼은어떻게 2018. 1. 30. 17:13
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
1
2
3
4
5
6
7
8
9
10
11
12
DataConn conn1 = new DataConn();
            DataSet ds;
            string DB_path = targetPath;
 
            string sql = @"SELECT * from info";
 
            ds = conn1.GetDataset(sql, DB_path);
            DataTable dt = ds.Tables[0];
 
            DataRow lastRow = dt.Rows[dt.Rows.Count - 1];
 
            int Lastinfo = Convert.ToInt32(lastRow[0]);
cs


특정 칼럼의 마지막 값을 알아내기 위해서는


dataset 을  datatable로 변화하고  마지막 row 를 구한후 그것에서 원하는 컬럼값을 취한당