using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Data.OleDb;
using System.Linq;
using System.Text;
using System.Windows.Forms;namespace testzakhire
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}private void button1_Click(object sender, EventArgs e)
{
oleDbCommand1.Parameters.Clear();
oleDbCommand1.CommandText = "update a set id=@id , matn=@matn where id=@id";
oleDbCommand1.Parameters.AddWithValue("@id",textBo x2.Text);
oleDbCommand1.Parameters.AddWithValue("@matn", textBox1.Text);oleDbCoection1.Open();
oleDbCommand1.ExecuteNonQuery();
oleDbCoection1.Close();}
}
}
برچسب:
نویسنده: محمد رضا جوادیان