일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- swift html parser
- MDB
- 대전
- python
- dataset
- 자전거
- 엑셀
- VBA
- insert into
- swift
- file move
- 대전 업힐
- EXIF data
- StreamReader
- exifread
- mdb table 합치기
- 대전 자전거
- html parser
- kanna parser
- 달력
- kanna html parser
- 파이썬
- Exif
- C#
- 스위프트
- 노은
- 유성
- Xcode
- euc-kr
- 딴지일보 자유게시판 파씽
- Today
- Total
목록dataset (3)
Fly to the sky & Return
텍스트 문서를 dataset으로 만든 후 ..우리가 필요로 하는 컬럼에 조건을 걸어서 원하는 데이터를 추출하는 방법입니다. 1 2 3 DataRow[] result = ds.Tables[0].Select("Co1 = 김말동"); test1 = int.Parse(result[0]["Co3"].ToString()); //나이 데이터로 int cs 요렇게 DataRow로 변환후에 원하는 위치에서 필요한 값을 얻어냅니다..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.IO; namespace txt_dat..
123456789101112DataConn 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 를 구한후 그것에서 원하는 컬럼값을 취한당