반응형
버튼 추가 DataGridView 추가
추가 -> 데이터 집합
데이터집합을 추가하면 빈 화면이 나온다
서버 탐색기에를 열어 테이블은 드래그!
코딩 후! 디버깅 하고 DATA LOAD 버튼 클릭하면 DB내용이 나온다!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Ex06
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
//추상화 수준이 높다 그런데 간단하다!
//NorthwindTableAdapters.CustomersTableAdapter da =
// new NorthwindTableAdapters.CustomersTableAdapter();
//Northwind.CustomersDataTable dt = da.GetData();
// DB 이름 추가한 테이블 이름
NorthwindTableAdapters.EmployeesTableAdapter da =
new NorthwindTableAdapters.EmployeesTableAdapter();
Northwind.EmployeesDataTable dt = da.GetData();
dataGridView1.DataSource = dt;
}
}
}
반응형
'프로그램 > C# - Study' 카테고리의 다른 글
C# - EX08 (0) | 2010.10.20 |
---|---|
C# - Ex07 (3) | 2010.10.19 |
C# - EX05 SHOWDATA, UPDATA 추가 (0) | 2010.10.18 |
C# - EX04 SqlTransaction, TransactionScope 활용 (0) | 2010.10.18 |
C# - EX05 DataGridView 활용 (2) | 2010.10.18 |