using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Data.Sql;
using System.Data.Common;
using System.Data.SqlTypes;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
//ilk olarak bi baglantı açıyoruz
SqlConnection baglan = new SqlConnection();
baglan.ConnectionString = "server=MYO3-BILGISAYAR;integrated security=true;database=Northwind;";
//connection string ile hangi bilgisayarın hangi data baseine hangi kullanıcı adı we şifryle baglanılacagını belirler
baglan.Open();//baglantı kurulur
SqlCommand sqCom = new SqlCommand();
sqCom.Connection = baglan;
sqCom.CommandText = "select* from employees ";
sqCom.CommandType = CommandType.Text;
sqCom.ExecuteScalar();
DataTable dtProd = new DataTable();
SqlDataAdapter sqDa = new SqlDataAdapter();
sqDa.SelectCommand = sqCom;
//data adapter e bu komutun selectmi updatemi insertmi deletemi oldugunu belirlemeliyim
sqDa.Fill(dtProd);// data table ı doldurur
dataGridView1.DataSource = dtProd;// gridde gostermeyi saglar
}
}
}
Hiç yorum yok:
Yorum Gönder