收藏 分销(赏)

C#操作数据库总结.doc

上传人:二*** 文档编号:4576680 上传时间:2024-09-30 格式:DOC 页数:6 大小:27.50KB
下载 相关 举报
C#操作数据库总结.doc_第1页
第1页 / 共6页
亲,该文档总共6页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、 . . . . 开发工具:Microsoft Visual Studio 2005数据库:Microsoft SQL Server 2005 说明:这里建立的数据库名为Demo,有一个学生表Student,为操作方便起见,我只添加两个字段:studentnum和studentname.一、SQL语句:-create database Demouse Democreate table Student(studentnum char(14) primary key,studentname varchar(30) not null)insert into Student values(201,扬)

2、二、代码:1.引入名称空间:using System.Data.SqlClient;2.定义连接字符串,连接对象,命令对象: private String connectionstr; private SqlConnection connection; private SqlCommand command;3.在构造函数中初始化连接字符串,连接对象,命令对象 (1)初始化连接字符串: 方式 connectionstr=server=localhost;uid=sa;pwd=123456;database=Demo; 方式 connectionstr=server=127.0.0.1;Integ

3、rade Security=SSPI;database=Demo; 其中,SIMS是我要连接的数据库名.(1)中的uid 和pwd是你登录数据库的登录名和密码 注:这种连接是连接本地的数据库,假设要连接局域网其它机子上的数据库,可将方式的server=localhost;改为server=数据库所在机子的IP; (2)初始化连接对象 connection = new SqlConnection(connectionstr); (3)初始化命令对象 command =new SqlCommand(); command .Connection =connection ;4.操作数据库中的数据 (1

4、)查询数据库中的数据 方法一: string snum=tBstudentnum .Text .Trim (); string str = select * from Student where studentnum= + snum + ; command .CommandText =str; connection.Open(); if (command.ExecuteScalar() = null) MessageBox.Show(您输入的学号对应的学生不存在!, 错误, MessageBoxButtons.OK,MessageBoxIcon.Error); else SqlDataRead

5、er sdr = command.ExecuteReader(); while (sdr.Read() tBstudentnum .Text = sdrstudentnum.ToString(); tBstudentname.Text = sdrstudentname.ToString(); sdr.Close(); connection.Close(); 方法二: string snum=tBstudentnum .Text .Trim (); string str = select * from Student where studentnum= + snum + ; command .C

6、ommandText =str; connection.Open(); if (command.ExecuteScalar() = null) MessageBox.Show(您输入的学号对应的学生不存在!, 错误, MessageBoxButtons.OK,MessageBoxIcon.Error); else SqlDataAdapter sda = new SqlDataAdapter(str,connection ); DataSet ds = new DataSet(); sda.Fill(ds, Student); DataTable dt = ds.TablesStudent;

7、tBstudentnum.Text = dt.Rows0studentnum.ToString(); tBstudentname.Text = dt.Rows0studentname.ToString(); connection.Close();(2)向数据库中添加数据 方法一: string snum = tBstudentnum.Text.Trim (); string sname = tBstudentname.Text.Trim(); if (snum = | sname = ) MessageBox.Show(学生学号或不能为空!, 错误, MessageBoxButtons.OK,

8、 MessageBoxIcon.Error); else string insertstr=insert into Student values(+snum +,+sname +); command.CommandText = insertstr; connection.Open(); command.ExecuteNonQuery(); MessageBox.Show(学生添加成功!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Information); connection.Close(); 方法二: string str = select * fr

9、om Student; string insertstr = insert into Student values( + snum + , + sname + ); SqlDataAdapter sda = new SqlDataAdapter(str, connection); DataSet ds = new DataSet(); sda.Fill(ds, Student); DataTable dt = ds.TablesStudent; DataRow dr = dt.NewRow(); drstudentnum = snum; drstudentname = sname; dt.Ro

10、ws.Add(dr); sda.InsertCommand = new SqlCommand(insertstr, connection); sda.Update(ds, Student); MessageBox.Show(学生添加成功!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Information);(3)修改数据库中的数据 方法一: string snum = tBstudentnum.Text.Trim(); string sname = tBstudentname.Text.Trim(); if (snum = | sname = ) Me

11、ssageBox.Show(学生学号或不能为空!, 错误, MessageBoxButtons.OK, MessageBoxIcon.Error); else string modifystr = update Student set studentname= + sname + where studentnum= + snum + ; command.CommandText = modifystr; connection.Open(); command.ExecuteNonQuery(); MessageBox.Show(学生的修改成功!, 提示, MessageBoxButtons.OK,

12、 MessageBoxIcon.Information ); connection.Close(); 方法二: string snum = tBstudentnum.Text.Trim(); string sname = tBstudentname.Text.Trim(); if (snum = | sname = ) MessageBox.Show(学生学号或不能为空!, 错误, MessageBoxButtons.OK, MessageBoxIcon.Error); else string str = select * from Student where studentnum= + sn

13、um + ; ; string updatestr = update Student set studentname= + sname + where studentnum= + snum + ; SqlDataAdapter sda = new SqlDataAdapter(str, connection); DataSet ds = new DataSet(); sda.Fill(ds, Student); DataTable dt = ds.TablesStudent; dt.Rows0studentname = sname; sda.UpdateCommand = new SqlCom

14、mand(updatestr , connection); sda.Update(ds, Student); MessageBox.Show(学生修改成功!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Information); (4)删除数据库中的数据 方法一: string snum = tBstudentnum.Text.Trim(); if (snum = ) MessageBox.Show(学生学号不能为空!, 错误, MessageBoxButtons.OK, MessageBoxIcon.Error); else string str =

15、select * from Student where studentnum= + snum + ; string deletestr = delete from Student where studentnum= + snum + ; command.CommandText =str ; connection.Open(); if (command.ExecuteScalar() = null) MessageBox.Show(此学号对应的学生不存在!, 错误, MessageBoxButtons.OK, MessageBoxIcon.Error); else command.Command

16、Text = deletestr; command.ExecuteNonQuery(); MessageBox.Show(学生的信息删除成功!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Information); connection.Close(); 方二: string str = select * from Student where studentnum= + snum + ; string deletestr = delete from Student where studentnum= + snum + ; SqlDataAdapter s

17、da = new SqlDataAdapter(str, connection); DataSet ds = new DataSet(); sda.Fill(ds, Student); DataTable dt = ds.TablesStudent; if (dt.Rows.Count 0) dt.Rows0.Delete(); sda.DeleteCommand = new SqlCommand(deletestr, connection); sda.Update(ds, Student); MessageBox.Show(学生信息删除成功!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Information); else MessageBox.Show(此学号对应的学生不存在!, 错误, MessageBoxButtons.OK, MessageBoxIcon.Error); 6 / 6

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 通信科技 > 数据库/数据算法

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服