2 Nisan 2013 Salı

DataGridViewden Ve Veritabanından Veri Silme

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.OleDb;

namespace DataGridViewden_ve____veritabanından_veri_silme
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        OleDbConnection bağlantı;
        OleDbCommand sqlkomutu;
        OleDbDataAdapter da;
        DataSet ds;


        private void güncelle() 
        {
            da = new OleDbDataAdapter("Select * from tablo", bağlantı);
            ds = new DataSet();
            bağlantı.Open();
            da.Fill(ds, "tablo");
            bağlantı.Close();
            dataGridView1.DataSource = ds.Tables["tablo"];
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            bağlantı = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=liste.mdb");
            güncelle();


            // TODO: This line of code loads data into the 'listeDataSet.tablo' table. You can move, or remove it, as needed.
            this.tabloTableAdapter.Fill(this.listeDataSet.tablo);

        }

        int seçilensatır;

        private void button2_Click(object sender, EventArgs e)//Öğrenci sil butonuna yazılır
                    {

            sqlkomutu = new OleDbCommand("delete from tablo where Kimlik=" + seçilensatır, bağlantı);
            bağlantı.Open();
            sqlkomutu.ExecuteNonQuery();
            bağlantı.Close();
            güncelle();
        }

        private void dataGridView1_RowEnter(object sender, DataGridViewCellEventArgs e)
        {
            seçilensatır = Convert.ToInt16(ds.Tables["tablo"].Rows[e.RowIndex]["Kimlik"]);
        }
    }
}



Hiç yorum yok:

Yorum Gönder