22 Ocak 2014 Çarşamba

C# da Veri Tabanına Kayıt Ekleme

c#
c#

using 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.Data.OleDb;

namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
OleDbDataReader data;
DataTable tablo = new DataTable();
// accese veri ekleme komutu
oleDbCommand1.CommandText = "insert into kisi (ad) values (a1)";
oleDbCommand1.Parameters.Add("a1",textBox2.Text);
oleDbCommand1.ExecuteNonQuery();
oleDbCommand1.Parameters.Clear();
// komutun bitişi
//datagridviewe görüntüleme
oleDbCommand1.CommandText = "Select * from kisi";
data = oleDbCommand1.ExecuteReader();
tablo.Load(data);
dataGridView1.DataSource = tablo;
//görüntülemenin sonu
}
private void Form1_Load(object sender, EventArgs e)
{
oleDbConnection1.Open();
}
}
}


Sitemizin daha kaliteli paylaşımları yapabilmesi için sizin yorumlarınıza ihtiyacımız var :)

0 yorum :

Yorum Gönder