资源描述:
《C#程序设计及应用教程 第2版 教学课件 马骏习题答案 第09章 习题解答.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、习题9参考解答1、使用保持连接方式编写程序,计算各年级平均成绩,并显示结果。【解答】usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;namespace习题9_1{publicpartialcl
2、assForm1:Form{publicForm1(){InitializeComponent();}//添加Button按钮在ListBox中显示结果privatevoidbutton1_Click(objectsender,EventArgse){listBox1.Items.Add("年级平均成绩");stringconnectionString=Properties.Settings.Default.MyDatabaseConnectionString;//根据连接字符串创建SqlCon
3、nection实例SqlConnectionconn=newSqlConnection(connectionString);//创建SqlCommand实例,并设置SQL语句和使用的连接实例SqlCommandcmd=newSqlCommand();cmd.CommandText="selectsubstring(学号,1,2)as年级,avg(成绩)as平均成绩fromMyTable2groupbysubstring(学号,1,2)";cmd.Connection=conn;try{conn.
4、Open();SqlDataReaderr=cmd.ExecuteReader();while(r.Read()==true){listBox1.Items.Add(string.Format("{0}级{1}",r[0],r[1]));}r.Close();}catch(Exceptionerr){MessageBox.Show(err.Message,"计算成绩失败");}finally{conn.Close();}}}}2、使用保持连接方式编写程序,查询MyTable2中不及格学生的学号、
5、姓名、性别和成绩。并将结果在ListBox中显示出来。【解答】usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;namespace习题9_2{publicpartialclassForm1:Fo
6、rm{publicForm1(){InitializeComponent();}privatevoidbutton1_Click(objectsender,EventArgse){listBox1.Items.Add("学号姓名性别成绩");stringconnectionString=Properties.Settings.Default.MyDatabaseConnectionString;//根据连接字符串创建SqlConnection实例SqlConnectionconn=newSqlC
7、onnection(connectionString);//创建SqlCommand实例,并设置SQL语句和使用的连接实例SqlCommandcmd=newSqlCommand();cmd.CommandText="Select学号,姓名,性别,成绩FromMyTable2Where(成绩<60)";cmd.Connection=conn;try{conn.Open();SqlDataReaderr=cmd.ExecuteReader();while(r.Read()==true){listBo
8、x1.Items.Add(string.Format("{0}{1}{2}{3}",r[0],r[1],r[2],r[3]));}r.Close();}catch(Exceptionerr){MessageBox.Show(err.Message,"查询成绩失败");}finally{conn.Close();}}}}3、编写程序,以“[编码]名称”的样式在comboBox1中显示MyTable1的内容。【解答】usingSystem;usingSystem.Collections.Generi