我帮你搞了修改的方法: 首先我把你的数据库表更改为 G_商品库存信息表(建议你建数据库尽量用英文)。然后在C#窗体里拉一个dataGridView控件、两个button控件。代码如下:
int intindex = 0; //记录行索引
SqlConnection conn; //声明一个SqlConnection变量
SqlDataAdapter adapter; //声明一个SqlDataAdapter变量
private void button1_Click(object sender, EventArgs e) //加载数据库
{
//实例化SqlConnection变量conn,连接数据库
conn = new SqlConnection("server=.;database=cpxsyglxt;uid=sa;pwd=");
//实例化SqlDataAdapter对象
SqlDataAdapter sda = new SqlDataAdapter("select * from G_商品库存信息表", conn);
DataSet ds = new DataSet(); //实例化DataSet对象
sda.Fill(ds); //使用SqlDataAdapter对象的Fill方法填充DataSet
dataGridView1.DataSource = ds.Tables[0];//设置dataGridView1控件的数据源
dataGridView1.RowHeadersVisible = false;//禁止显示行标题
button1.Enabled = false; //禁用按钮
dataGridView1.Columns[0].ReadOnly = true; //将控件设置为只读
}
private void button2_Click(object sender, EventArgs e) //修改
{
if (dbUpdate()) //判断dbUpdate方法返回的值是否为true
{
MessageBox.Show("修改成功!"); //弹出提示
}
button1_Click(sender, e); //重新加载
}
private DataTable dbconn(string strSql) //建立一个DataTable类型的方法
{
this.adapter = new SqlDataAdapter(strSql, conn); //实例化SqlDataAdapter对象
DataTable dtSelect = new DataTable(); //实例化DataTable对象
int rnt = this.adapter.Fill(dtSelect); //Fill方法填充DataTable对象
return dtSelect; //返回DataTable对象
}
private Boolean dbUpdate() //建立一个Boolean类型的方法dbUpdate
{
string strSql = "select * from G_商品库存信息表"; //声明SQL语句
DataTable dtUpdate = new DataTable(); //实例化DataTable
dtUpdate = this.dbconn(strSql); //调用dbconn方法
dtUpdate.Rows.Clear(); //调用Clear方法
DataTable dtShow = new DataTable(); //实例化DataTable
dtShow = (DataTable)this.dataGridView1.DataSource;
dtUpdate.ImportRow(dtShow.Rows[intindex]);//使用ImportRow方法复制dtShow中的值
try
{
SqlCommandBuilder CommandBuiler; //声明SqlCommandBuilder变量
CommandBuiler = new SqlCommandBuilder(this.adapter);
this.adapter.Update(dtUpdate); //调用Update方法更新数据
}
catch (Exception ex)
{
MessageBox.Show(ex.Message.ToString()); //出现异常弹出提示
return false;
}
dtUpdate.AcceptChanges(); //提交更改
return true;
}
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
intindex = e.RowIndex;//记录当前行号
}
----------------------------------------------------------------------------
// 还有删除的功能要我打么 ?
代码不会 可以说下我的思路,
修改: dataGridView1单元格改成可编辑,CellEndEdit事件(不知道是不是这个..)里写上修改的代码,取值更新到数据库中
删除:可以弄个按钮,或者右键菜单,获取值删除就行
在dataGridView1右上角可以按界面提示附加数据库,不用写代码
另外你说的 修改,删除代码。我想就是 保存,删除
用updata 更新 删除用delete 添加用Insert into (SQL 为例)
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 dealInfo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
dataGridView1.DataSource = GetMessage();
comboBox1.SelectedIndex = 0;
}
private DataTable GetMessage()
{
string P_Connection = @"server=MICROSOF-4A2656\HMILY;database=db_tometwo;uid=sa;pwd=duchuan234...";
string P_Command = string.Format("select * from 商品库存信息表");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(P_Command, P_Connection);
DataTable P_dt = new DataTable();
P_SqlDataAdapter.Fill(P_dt);
return P_dt;
}
private void button1_Click(object sender, EventArgs e)
{
RemoveTable();
dataGridView1.DataSource = "";
}
private void RemoveTable()
{
string P_Connection = @"server=MICROSOF-4A2656\HMILY;database=db_tometwo;uid=sa;pwd=duchuan234...";
string P_Command = string.Format("drop table 商品库存信息表");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(P_Command, P_Connection);
DataTable P_dt = new DataTable();
P_SqlDataAdapter.Fill(P_dt);
}
private void button2_Click(object sender, EventArgs e)
{
dataGridView1.DataSource = UpdateTable();
}
private DataTable UpdateTable()
{
string P_Connection = @"server=MICROSOF-4A2656\HMILY;database=db_tometwo;uid=sa;pwd=duchuan234...";
string P_Command = string.Format("update 商品库存信息表 set {0}={1} where 商品编号={2}", comboBox1.Text, textBox2.Text, textBox1.Text);
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(P_Command, P_Connection);
DataTable P_dt = new DataTable();
P_SqlDataAdapter.Fill(P_dt);
return P_dt;
}
}
}
我是在自己的数据库中创建的你的表,根据自己的需要酌情修改。
晕了
呱呱的蛙 写的很好撒!
自己稍微看点书!!这个真的不难。《GridView 72般绝技》 下载个去 你要的里面都有