1.Command对象查询数据库

  1. protected void Button1_Click(object sender, EventArgs e)
  2. {
  3. //读取web.config节点配置
  4. string strcon = ConfigurationManager.ConnectionStrings["testjm"].ConnectionString;
  5. //实例化sqlConnection对象
  6. SqlConnection con = new SqlConnection(strcon);
  7. //数据库建立连接打开
  8. con.Open();
  9. string strsql = "select * from userinfo where name=@name";//查询语句
  10. SqlCommand mycmd = new SqlCommand(strsql, con);
  11. mycmd.Parameters.Add("@name", SqlDbType.VarChar,).Value = TextBox1.Text.Trim();
  12. SqlDataAdapter myda = new SqlDataAdapter(mycmd);//实例化SqlDataAdapter,把strsql查询语句通过con传递给数据库
  13. DataSet myds = new DataSet();//实例化DataSet为myds
  14. myda.Fill(myds, "userinfo");//填充数据集
  15. GridView1.DataSource = myds;//界面上显示返回的数据集,指定数据源
  16. GridView1.DataBind();//绑定数据库
  17.  
  18. myda.Dispose();
  19. myds.Dispose();
  20.  
  21. con.Close();//关闭连接
  22. }

2.Command对象添加数据

  1. /// <summary>
  2. /// 封装查询userinfo表信息
  3. /// </summary>
  4. protected void bind()
  5. {
  6.  
  7. SqlConnection con = getcon();
  8. //数据库建立连接打开
  9. con.Open();
  10. string strsql = "select * from userinfo";//查询语句
  11. SqlDataAdapter myda = new SqlDataAdapter(strsql,con);
  12. DataSet myds = new DataSet();
  13. myda.Fill(myds);
  14. GridView1.DataSource = myds;//界面上显示返回的数据集,指定数据源
  15. GridView1.DataKeyNames = new string[] { "id" };
  16. GridView1.DataBind();//绑定数据库
  17. myda.Dispose();
  18. myds.Dispose();
  19. con.Close();
  20.  
  21. }
  22.  
  23. /// <summary>
  24. /// 封装数据库连接
  25. /// </summary>
  26. /// <returns></returns>
  27. protected SqlConnection getcon()
  28. {
  29. //读取web.config节点配置
  30. string strcon = ConfigurationManager.ConnectionStrings["testjm"].ConnectionString;
  31. //实例化sqlConnection对象
  32. SqlConnection con1 = new SqlConnection(strcon);
  33. return con1;
  34. }
  1. /// <summary>
  2. /// 添加数据
  3. /// </summary>
  4. /// <param name="sender"></param>
  5. /// <param name="e"></param>
  6. protected void btSumbit_Click(object sender, EventArgs e)
  7. {
  8. SqlConnection con = getcon();
  9. //数据库建立连接打开
  10. con.Open();
  11. string strinsert = "insert into userinfo(id,name,password,age) values(" + this.tbid.Text.Trim() + ",'" + this.tbname.Text.Trim() + "','" + this.tbpwd.Text.Trim() + "'," + this.tbage.Text.Trim() + ")";
  12. SqlCommand mycmd = new SqlCommand(strinsert, con);
  13. mycmd.ExecuteNonQuery();
  14. mycmd.Dispose();
  15. con.Close();//关闭连接
  16. this.bind();
  17. }
  18. /// <summary>
  19. /// 添加数据中的重置
  20. /// </summary>
  21. /// <param name="sender"></param>
  22. /// <param name="e"></param>
  23. protected void btReset_Click(object sender, EventArgs e)
  24. {
  25. tbid.Text = "";
  26. tbname.Text = "";
  27. tbpwd.Text = "";
  28. tbage.Text = "";
  29. }

3.Command对象修改数据

  1. /// <summary>
  2. /// 单击编辑按钮,会触发RowEditing事件
  3. /// </summary>
  4. /// <param name="sender"></param>
  5. /// <param name="e"></param>
  6. protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
  7. {
  8. GridView1.EditIndex = e.NewEditIndex;
  9. this.bind();
  10. }
  11. /// <summary>
  12. /// 更新数据,RowUpdating更新前的事件,RowUpdated更新后的事件
  13. /// </summary>
  14. /// <param name="sender"></param>
  15. /// <param name="e"></param>
  16. protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
  17. {
  18. int cid = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value.ToString());
  19. string cName = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[].Controls[])).Text.ToString();
  20. string cPwd = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[].Controls[])).Text.ToString();
  21. string strupdate = "update userinfo set name='" + cName + "',password='"+ cPwd +"'where id=" + cid;
  22. SqlConnection con = getcon();
  23. con.Open();
  24. SqlCommand mycmd = new SqlCommand(strupdate, con);
  25. mycmd.ExecuteNonQuery();
  26. mycmd.Dispose();
  27. con.Close();//关闭连接
  28. this.bind();
  29. }
  30. /// <summary>
  31. /// 单击更新中的取消按钮,触发RowCancelingEdit事件
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
  36. {
  37. GridView1.EditIndex = -;
  38. this.bind();
  39. }

4.Command对象删除数据

  1. /// <summary>
  2. /// 删除数据
  3. /// </summary>
  4. /// <param name="sender"></param>
  5. /// <param name="e"></param>
  6. protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
  7. {
  8. int cid = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value.ToString());
  9. string strdelete = "delete from userinfo where id=" + cid;
  10. SqlConnection con = getcon();
  11. con.Open();
  12. SqlCommand mycmd = new SqlCommand(strdelete,con);
  13. mycmd.ExecuteNonQuery();
  14. mycmd.Dispose();
  15. con.Close();
  16. this.bind();
  17. }
  18. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
  19. {
  20. if (e.Row.RowType == DataControlRowType.DataRow)
  21. {
  22. ((LinkButton)e.Row.Cells[].Controls[]).Attributes.Add("onclick", "return confirm('确定要删除这天数据吗 ?')");
  23. }
  24. }

使用command对象操作数据库的更多相关文章

  1. c# 数据库编程(利用DataSet 和 DataAdaper对象操作数据库--单表操作)

    一.概述 前面2篇文章,介绍了使用SqlCommand对象利用sql命令来操作数据库. 这篇文章我们来介绍使用c#的DataSet 和 DataAdaper对象操作操作数据库. 先来介绍下这两个对象是 ...

  2. c# 数据库编程(利用DataSet 和 DataAdaper对象操作数据库--跨表操作)

    上篇文章我们介绍了如何利用DataSet 和 DataAdaper对象来对单张表进行操作. 本文我们将介绍如何进行跨表操作. 我们通过具体例子方式进行演示,例子涉及到三张表. 1)student表(学 ...

  3. php 用封装类的方法操作数据库和批量删除

    封装类 <?php class DBDA { public $host="localhost"; //服务器地址 public $uid="root"; ...

  4. C#与数据库访问技术总结(六)之Command对象创建SQl语句代码示例

    Command对象创建SQl语句代码示例 说明:前面介绍了 Command 对象的方法和一些属性,回顾一下 Command对象主要用来执行SQL语句.利用Command对象,可以查询数据和修改数据. ...

  5. C#与数据库访问技术总结(五)之Command对象的常用方法

    Command对象的常用方法 说明:上篇总结了Command对象的几个数据成员,这节总结Command对象的常用方法. 同样,在不同的数据提供者的内部,Command对象的名称是不同的,在SQL Se ...

  6. 多线程下,多次操作数据库报错,There is already an open DataReader associated with this Command which must be closed first.

    原文:https://www.cnblogs.com/sdusrz/p/4433108.html 执行SqlDataReader.Read之后,如果还想用另一个SqlCommand执行Insert或者 ...

  7. Android学习笔记_9_SQLiteOpenHelper对象之数据库增删改查以及事务回滚操作

    一.SQLite数据库: 在Android平台上,集成了一个嵌入式关系型数据库—SQLite,SQLite3支持 NULL.INTEGER.REAL(浮点数字).TEXT(字符串文本)和BLOB(二进 ...

  8. django之三剑客、静态文件配置、请求响应对象、数据库操作

    三剑客 from django.shortcuts import render,HttpResponse,redirect HttpResponse # 返回字符串 render(response, ...

  9. ADO.NET操作数据库(一)

    ---恢复内容开始--- [1]ADO.Net简介2015-12-07-20:16:05 ADO.Net提供对Microsoft SQL Server数据源以及通过OLE DB和XML公开的数据源的一 ...

随机推荐

  1. oracle pctfree和pctused详解

    一.建立表时候,注意PCTFREE参数的作用 PCTFREE:为一个块保留的空间百分比,表示数据块在什么情况下可以被insert,默认是10,表示当数据块的可用空间低于10%后,就不可以被insert ...

  2. 来访统计的JS代码

    <script language="JavaScript"> var caution = false function setCookie(name, value, e ...

  3. [Linux] 学习笔记之安装学习环境(sshd, lrzsz)

    紧接前一篇,在VMWare安装完Linux,这个时候我们要使用远程工具连接到虚拟机上去了,以前一直使用Putty,后来到新公司之后,推荐使用SecureCRT,使用之后,觉得效果不错,但是每次连接都失 ...

  4. Visual Studio Code升级到0.5,提供对ES6的更好支持

    (此文章同时发表在本人微信公众号"dotNET每日精华文章",欢迎右边二维码来关注.) 题记:题目即题记. 自从Visual Studio Code发布之后(最初是0.1),微软就 ...

  5. CQRS及.NET中的参考资料

    (此文章同时发表在本人微信公众号"dotNET每日精华文章",欢迎右边二维码来关注.) 题记:CQRS作为一种设计模式,其实一点都不新鲜了.不过今天有朋友感叹.NET朋友也关注CQ ...

  6. android selector(转)

    Selector的结构描述: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:a ...

  7. 如何修改 SQL Server 代理主作业 (Transact-SQL)

    本主题介绍了如何使用存储过程修改 Microsoft SQL Server 代理主作业. 更改作业定义计划的详细信息 1.       执行 sp_update_schedule. 在作业中添加.更改 ...

  8. 【MyEcplise 插件】反编译插件jad

    jad是一个使用比较广泛的反编译插件. 这里说如何将jad安装到My Ecplise中. 1.下载jad的jar http://nchc.dl.sourceforge.net/project/jadc ...

  9. Loadrunner中参数化实战(6)-Random+Each occurrence

    参数化数据30条: 脚本如下,演示登录,投资,退出操作是,打印手机号: 首先验证Vugen中迭代: Random+Each occurrence 设置迭代4次Action 结果如下:

  10. Portlet简述

    一.Portlet是什么? Portlet是基于java的web组件,由portlet容器管理,并由容器处理请求,生产动态内容.Portals使用portlets作为可插拔用户接口组件,提供信息系统的 ...