日期:2014-05-18 浏览次数:21179 次
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.SqlClient; namespace add_list { public partial class Form1 : Form//程序能实现查看,修改,删除,增加等,主要修改和删除不太会,简单描述如下 { public Form1() { InitializeComponent(); } public static string ConnStr = @"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\add_listDatabase.mdf;Integrated Security=True;User Instance=True";//此为内建数据库add_listDatabase.mdf private void Form1_Load(object sender, EventArgs e) { // TODO: 这行代码将数据加载到表“add_listDatabaseDataSet.Table1”中。您可以根据需要移动或移除它。 this.table1TableAdapter.Fill(this.add_listDatabaseDataSet.Table1); ReFresh();//自动载入时刷新 } private void ReFresh()//刷新 { SqlConnection conn = new SqlConnection(Form1.ConnStr); conn.Open(); string SqlStr = "select * from Table1"; SqlDataAdapter myada = new SqlDataAdapter(SqlStr, conn); DataSet myset = new DataSet(); myada.Fill(myset); this.dataGridView1.DataSource = myset.Tables[0]; conn.Close(); myada.Dispose(); myset.Dispose(); } private void buttonReFresh_Click(object sender, EventArgs e) { showdetail show= new showdetail(); if (show.ShowDialog() == DialogResult.OK) { ReFresh(); } } private void buttonDel_Click(object sender, EventArgs e)//删除操作Button,要求选择一行数据库表中数据点击此键实现删除,另数据表是在DataGridView中,主要不清楚如何才能在DataGridView显示出的表中选择一行数据,实现的代码 { } private void buttonUpdate_Click(object sender, EventArgs e)//修改操作,同上,主要不会如何选择的这一行的数据,实现在另一个Form中的读出。其他修改操作都会 { } } }