使用command对象操作数据库
1.Command对象查询数据库
- protected void Button1_Click(object sender, EventArgs e)
- {
- //读取web.config节点配置
- string strcon = ConfigurationManager.ConnectionStrings["testjm"].ConnectionString;
- //实例化sqlConnection对象
- SqlConnection con = new SqlConnection(strcon);
- //数据库建立连接打开
- con.Open();
- string strsql = "select * from userinfo where name=@name";//查询语句
- SqlCommand mycmd = new SqlCommand(strsql, con);
- mycmd.Parameters.Add("@name", SqlDbType.VarChar,).Value = TextBox1.Text.Trim();
- SqlDataAdapter myda = new SqlDataAdapter(mycmd);//实例化SqlDataAdapter,把strsql查询语句通过con传递给数据库
- DataSet myds = new DataSet();//实例化DataSet为myds
- myda.Fill(myds, "userinfo");//填充数据集
- GridView1.DataSource = myds;//界面上显示返回的数据集,指定数据源
- GridView1.DataBind();//绑定数据库
- myda.Dispose();
- myds.Dispose();
- con.Close();//关闭连接
- }
2.Command对象添加数据
- /// <summary>
- /// 封装查询userinfo表信息
- /// </summary>
- protected void bind()
- {
- SqlConnection con = getcon();
- //数据库建立连接打开
- con.Open();
- string strsql = "select * from userinfo";//查询语句
- SqlDataAdapter myda = new SqlDataAdapter(strsql,con);
- DataSet myds = new DataSet();
- myda.Fill(myds);
- GridView1.DataSource = myds;//界面上显示返回的数据集,指定数据源
- GridView1.DataKeyNames = new string[] { "id" };
- GridView1.DataBind();//绑定数据库
- myda.Dispose();
- myds.Dispose();
- con.Close();
- }
- /// <summary>
- /// 封装数据库连接
- /// </summary>
- /// <returns></returns>
- protected SqlConnection getcon()
- {
- //读取web.config节点配置
- string strcon = ConfigurationManager.ConnectionStrings["testjm"].ConnectionString;
- //实例化sqlConnection对象
- SqlConnection con1 = new SqlConnection(strcon);
- return con1;
- }
- /// <summary>
- /// 添加数据
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected void btSumbit_Click(object sender, EventArgs e)
- {
- SqlConnection con = getcon();
- //数据库建立连接打开
- con.Open();
- 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() + ")";
- SqlCommand mycmd = new SqlCommand(strinsert, con);
- mycmd.ExecuteNonQuery();
- mycmd.Dispose();
- con.Close();//关闭连接
- this.bind();
- }
- /// <summary>
- /// 添加数据中的重置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected void btReset_Click(object sender, EventArgs e)
- {
- tbid.Text = "";
- tbname.Text = "";
- tbpwd.Text = "";
- tbage.Text = "";
- }
3.Command对象修改数据
- /// <summary>
- /// 单击编辑按钮,会触发RowEditing事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
- {
- GridView1.EditIndex = e.NewEditIndex;
- this.bind();
- }
- /// <summary>
- /// 更新数据,RowUpdating更新前的事件,RowUpdated更新后的事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
- {
- int cid = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value.ToString());
- string cName = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[].Controls[])).Text.ToString();
- string cPwd = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[].Controls[])).Text.ToString();
- string strupdate = "update userinfo set name='" + cName + "',password='"+ cPwd +"'where id=" + cid;
- SqlConnection con = getcon();
- con.Open();
- SqlCommand mycmd = new SqlCommand(strupdate, con);
- mycmd.ExecuteNonQuery();
- mycmd.Dispose();
- con.Close();//关闭连接
- this.bind();
- }
- /// <summary>
- /// 单击更新中的取消按钮,触发RowCancelingEdit事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
- {
- GridView1.EditIndex = -;
- this.bind();
- }
4.Command对象删除数据
- /// <summary>
- /// 删除数据
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
- {
- int cid = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value.ToString());
- string strdelete = "delete from userinfo where id=" + cid;
- SqlConnection con = getcon();
- con.Open();
- SqlCommand mycmd = new SqlCommand(strdelete,con);
- mycmd.ExecuteNonQuery();
- mycmd.Dispose();
- con.Close();
- this.bind();
- }
- protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
- {
- if (e.Row.RowType == DataControlRowType.DataRow)
- {
- ((LinkButton)e.Row.Cells[].Controls[]).Attributes.Add("onclick", "return confirm('确定要删除这天数据吗 ?')");
- }
- }
使用command对象操作数据库的更多相关文章
- c# 数据库编程(利用DataSet 和 DataAdaper对象操作数据库--单表操作)
一.概述 前面2篇文章,介绍了使用SqlCommand对象利用sql命令来操作数据库. 这篇文章我们来介绍使用c#的DataSet 和 DataAdaper对象操作操作数据库. 先来介绍下这两个对象是 ...
- c# 数据库编程(利用DataSet 和 DataAdaper对象操作数据库--跨表操作)
上篇文章我们介绍了如何利用DataSet 和 DataAdaper对象来对单张表进行操作. 本文我们将介绍如何进行跨表操作. 我们通过具体例子方式进行演示,例子涉及到三张表. 1)student表(学 ...
- php 用封装类的方法操作数据库和批量删除
封装类 <?php class DBDA { public $host="localhost"; //服务器地址 public $uid="root"; ...
- C#与数据库访问技术总结(六)之Command对象创建SQl语句代码示例
Command对象创建SQl语句代码示例 说明:前面介绍了 Command 对象的方法和一些属性,回顾一下 Command对象主要用来执行SQL语句.利用Command对象,可以查询数据和修改数据. ...
- C#与数据库访问技术总结(五)之Command对象的常用方法
Command对象的常用方法 说明:上篇总结了Command对象的几个数据成员,这节总结Command对象的常用方法. 同样,在不同的数据提供者的内部,Command对象的名称是不同的,在SQL Se ...
- 多线程下,多次操作数据库报错,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或者 ...
- Android学习笔记_9_SQLiteOpenHelper对象之数据库增删改查以及事务回滚操作
一.SQLite数据库: 在Android平台上,集成了一个嵌入式关系型数据库—SQLite,SQLite3支持 NULL.INTEGER.REAL(浮点数字).TEXT(字符串文本)和BLOB(二进 ...
- django之三剑客、静态文件配置、请求响应对象、数据库操作
三剑客 from django.shortcuts import render,HttpResponse,redirect HttpResponse # 返回字符串 render(response, ...
- ADO.NET操作数据库(一)
---恢复内容开始--- [1]ADO.Net简介2015-12-07-20:16:05 ADO.Net提供对Microsoft SQL Server数据源以及通过OLE DB和XML公开的数据源的一 ...
随机推荐
- oracle pctfree和pctused详解
一.建立表时候,注意PCTFREE参数的作用 PCTFREE:为一个块保留的空间百分比,表示数据块在什么情况下可以被insert,默认是10,表示当数据块的可用空间低于10%后,就不可以被insert ...
- 来访统计的JS代码
<script language="JavaScript"> var caution = false function setCookie(name, value, e ...
- [Linux] 学习笔记之安装学习环境(sshd, lrzsz)
紧接前一篇,在VMWare安装完Linux,这个时候我们要使用远程工具连接到虚拟机上去了,以前一直使用Putty,后来到新公司之后,推荐使用SecureCRT,使用之后,觉得效果不错,但是每次连接都失 ...
- Visual Studio Code升级到0.5,提供对ES6的更好支持
(此文章同时发表在本人微信公众号"dotNET每日精华文章",欢迎右边二维码来关注.) 题记:题目即题记. 自从Visual Studio Code发布之后(最初是0.1),微软就 ...
- CQRS及.NET中的参考资料
(此文章同时发表在本人微信公众号"dotNET每日精华文章",欢迎右边二维码来关注.) 题记:CQRS作为一种设计模式,其实一点都不新鲜了.不过今天有朋友感叹.NET朋友也关注CQ ...
- android selector(转)
Selector的结构描述: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:a ...
- 如何修改 SQL Server 代理主作业 (Transact-SQL)
本主题介绍了如何使用存储过程修改 Microsoft SQL Server 代理主作业. 更改作业定义计划的详细信息 1. 执行 sp_update_schedule. 在作业中添加.更改 ...
- 【MyEcplise 插件】反编译插件jad
jad是一个使用比较广泛的反编译插件. 这里说如何将jad安装到My Ecplise中. 1.下载jad的jar http://nchc.dl.sourceforge.net/project/jadc ...
- Loadrunner中参数化实战(6)-Random+Each occurrence
参数化数据30条: 脚本如下,演示登录,投资,退出操作是,打印手机号: 首先验证Vugen中迭代: Random+Each occurrence 设置迭代4次Action 结果如下:
- Portlet简述
一.Portlet是什么? Portlet是基于java的web组件,由portlet容器管理,并由容器处理请求,生产动态内容.Portals使用portlets作为可插拔用户接口组件,提供信息系统的 ...