C#实现SQL数据库中数据的读取和存储1前提在SQL数据库中建立名为Exercise的数据库并新建表格liannxi;2在C#中窗体添加表格gridview[此处使用了DevExpress的—gridControl控件--]3注意连接字符串信息的确定方法如下:a)如上图所示显示服务器资源管理器b)在[服务器资源管理器]中单击数据连接确定打开SQLServer将“服务器名称”复制到该栏c)选中新添加的数据连接实例右键选择“属性”复制“连接字符串”即可;4代码片段如下:C#从SQL数据库中提取数据;//----实现对SQLServer中数据的读取并显示到grid中stringcon,sql;con=DataSource=lijr-pc;InitialCatalog=Exercise;IntegratedSecurity=True;//链接字符串sql=select*fromlianxi;SqlConnectionmycon=newSqlConnection(con);//链接参数为【链接字符串】mycon.Open();SqlDataAdaptermyda=newSqlDataAdapter(sql,con);//数据库适配器--用于执行sql语句参数为【执行语句、//链接字符串】-----[用于填充DataSet(数据集)]DataSetmyds=newDataSet();myda.Fill(myds,lianxi);//用指定的表填充DataSetgridControl1.DataSource=myds.Tables[lianxi];mycon.Close();//关闭连接C#对SQL数据库进行操作;//实现对SQLServer中指定表格内容的删除stringcon,sql;con=DataSource=lijr-pc;InitialCatalog=Exercise;IntegratedSecurity=True;//链接字符串sql=deletefromlianxi;//SQL语句SqlConnectionmycon=newSqlConnection(con);//新建连接mycon.Open();//打开连接SqlCommandcom=newSqlCommand();com.Connection=mycon;com.CommandType=CommandType.Text;com.CommandText=sql;SqlDataReaderdatar=com.ExecuteReader();//从数据库中读取流datar.Close();//关闭读取流之后才能开启新的数据流读取mycon.Close();//关闭连接