日期:2011-01-25 23:11:00 来源:本站整理
SQL整体更新的办法[MSSQL防范]
本文“SQL整体更新的办法[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
假如在项目中碰到用户在客户端编辑数据,增添数据.SQL整体更新到数据库里面,应当怎么做呢?下面就将教您若何举行SQL整体更新,供您参考.
数据库构造:
- DataSet ds=new DataSet();读取数据
- private void button1_Click(object sender, System.EventArgs e)
- {
- //
- string str_Conn="workstation id=JHTCHINA;packet size=4096;user id=sa;initial catalog=master;persist security info=False";
- try
- {
- SqlConnection objConn=new SqlConnection(str_Conn);
- string str_sql="select * from Test_Base";
- SqlCommand objComm=new SqlCommand(str_sql,objConn);
- SqlDataAdapter objAdapter=new SqlDataAdapter(objComm);
- objAdapter.Fill(ds,"Test_Base");
- dataGrid1.DataSource=ds;
- }
- catch (Exception exc)
- {
- MessageBox.Show(exc.Message);
- }
- }
CREATE TABLE [Test_Base] (
[CodeZZB] [nvarchar] (50) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[InterName] [nvarchar] (100) COLLATE Chinese_PRC_CI_AS NULL ,
[Guid] [nvarchar] (50) COLLATE Chinese_PRC_CI_AS NOT NULL CONSTRAINT [DF_LoginPerson_Guid] DEFAULT (newid()),
CONSTRAINT [PK_Test_Base] PRIMARY KEY CLUSTERED
(
[CodeZZB]
) ON [PRIMARY]
) ON [PRIMARY]
GO
定义 全局DataSet
- DataSet ds=new DataSet();读取数据
- private void button1_Click(object sender, System.EventArgs e)
- {
- //
- string str_Conn="workstation id=JHTCHINA;packet size=4096;user id=sa;initial catalog=master;persist security info=False";
- try
- {
- SqlConnection objConn=new SqlConnection(str_Conn);
- string str_sql="select * from Test_Base";
- SqlCommand objComm=new SqlCommand(str_sql,objConn);
- SqlDataAdapter objAdapter=new SqlDataAdapter(objComm);
- objAdapter.Fill(ds,"Test_Base");
- dataGrid1.DataSource=ds;
- }
- catch (Exception exc)
- {
- MessageBox.Show(exc.Message);
- }
- }
编辑增添dataGrid今后更新数据
- private void button2_Click(object sender, System.EventArgs e)
- {
- try
- {
- //这里ds.Table[0]里面的数据已经改变
- string str_Conn="workstation id=JHTCHINA;packet size=4096;user id=sa;initial catalog=master;persist security info=False";
- //整体把改正的数据更新到数据库里面
- SqlConnection objConn=new SqlConnection(str_Conn);
- string str_sql="select * from Test_Base";
- SqlCommand objComm=new SqlCommand(str_sql,objConn);
- SqlDataAdapter objAdapter=new SqlDataAdapter(objComm);
- SqlCommandBuilder updataBulid=new SqlCommandBuilder(objAdapter);
- objAdapter.Update(ds,"Test_Base");
- MessageBox.Show("OK");
- }
- catch (Exception exc)
- {
- MessageBox.Show(exc.Message);
- }
- }
运行通过
假如是SQL整体更新增添,在数据读取的时刻
string str_sql="select * from Test_Base where 1=2";
一句代码便可以了
以上是“SQL整体更新的办法[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论