data1
data1
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 MDIsec1
{
public partial class Form2 : Form
{
OleDbConnection con = new OleDbConnection();
OleDbCommand cmd = new OleDbCommand();
public Form2()
{
InitializeComponent();
}
cmd.Connection = con;
cmd.CommandText = "Insert into studtable values('" + textBox1.Text +
"','" + textBox2.Text + "','" + textBox3.Text + "','" + comboBox1.Text + "')";
cmd.ExecuteNonQuery();
MessageBox.Show("one record add");
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
comboBox1.Text = "";
con.Close();
}
con.Close();
con.Close();
}
}
}