數(shù)據(jù)庫上機實驗_第1頁
數(shù)據(jù)庫上機實驗_第2頁
數(shù)據(jù)庫上機實驗_第3頁
數(shù)據(jù)庫上機實驗_第4頁
數(shù)據(jù)庫上機實驗_第5頁
已閱讀5頁,還剩5頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

上機實驗七實驗1:需求分析學生成績管理是學生信息管理的重要一部分,也是學校教學工作的重要組成部分。學生成績管理系統(tǒng)的開發(fā)能大大減輕教務管理人員和教師的工作量,同時能使學生及時了解選修課程成績。該系統(tǒng)主要包括學生信息管理、課程信息管理、成績管理等,具體功能如下:(1)完成數(shù)據(jù)的錄入和修改,并提交數(shù)據(jù)庫保存。其中的數(shù)據(jù)包括班級信息、學生信息、課程信息、學生成績等。班級信息包括班級編號、班級名稱、學生所在的學院名稱、專業(yè)名稱、入學年份等。學生信息包括學生的學號、姓名、性別、出生年月等。課程信息包括課程編號、課程名稱、課程的學分、課程學時等。各課程成績包括各門課程的平時成績、期末成績、總評成績等。(2)實現(xiàn)基本信息的查詢。包括班級信息的查詢、學生信息的查詢、課程信息的查詢和成績的查詢等。(3)實現(xiàn)信息的查詢統(tǒng)計。主要包括各班學生信息的統(tǒng)計、學生選修課程情況的統(tǒng)計、開設課程的統(tǒng)計、各課程成績的統(tǒng)計、學生成績的統(tǒng)計等。用例分析學生信息管理系統(tǒng)

3.ER圖將ER圖轉(zhuǎn)化為關系實例:班級(班級編號,班級名稱,所在學院,所屬專業(yè),入學年份)學生(學號,姓名,性別,出生年月,班級編號)課程(課程編號,課程名稱,課程學分,課程學時)4.表結(jié)構設計2?學生基本信息表student學生基本信息表student列名數(shù)據(jù)類型可否為空說明SnoVARCHAR(50)NOTNULL學號(主鍵)SnameVARCHAR(50)NULL姓名

SsexVARCHAR(50)NULL性別SageVARCHAR(50)NULL入學年齡2?課程基本信息表course課程基本信息表course列名數(shù)據(jù)類型可否為空說明enoVARCHAR(50)NOTNULL課程編號(主鍵)cnameVARCHAR(50)NULL課程名CscoVARCHAR(50)NULL學分CcreditVARCHAR(50)NULL課程學時3?學生成績表sc學生成績表sc列名數(shù)據(jù)類型可否為空說明snoVARCHAR(50)NOTNULL學號(主鍵)CnoVARCHAR(50)NOTNULL課程編號(主鍵)GradeVARCHAR(50)NULL學分4?管理員信息表stu.user管理員信息表stu_user列名數(shù)據(jù)類型可否為空說明UsernameVARCHAR(50)NOTNULL用戶名(主鍵)

PasswdVARCHAR(50)NOTNULL密碼(主鍵)5.功能實現(xiàn)一、創(chuàng)建數(shù)據(jù)庫文件.mdf1開始菜單-??打JFMicrosoftVisualStdio2019~*新建項目?選擇windows窗體應用程序一右鍵項目需一添加新建項一選擇數(shù)據(jù)一基于服務的數(shù)據(jù)庫2數(shù)據(jù)庫連接方法SqlCormectionmyConnection=newSqlConnection(@〃DataSource二.\SQLEXPRESS;AttachDBFilename二DataDirectory|\stu_managesystem.mdf;IntegratedSecurity二True;UserInstance二True");二、學生信息處理1-學生信息的管理功能,此部分實現(xiàn)了對學生基本信息添加修改刪除操作。學號性別年齡猶系09C9014101OS09014102020901410309090K1040909014105學號性別年齡猶系09C9014101OS09014102020901410309090K1040909014105OS090K10609090K107OS0901410802090K10909090HM009C90K11]0939CK112航琪佳江宇宇冰兒斯詐謬1軟S囂1雌別hM里男男男男男里女女女女20212122020202020202320所在系計算機俑信工程機植制陸溷工程臨床工移電P程E機機機機

口計計計計|添加J[耀][脈]關鍵代也如蘆—namespacestu_managesystem{publicpartialclassstu_inf:Formpublicstu_inf0{InitializeComponent0;}SqlConnectionmyConnection;SqlCommandsqlCommand;privatevoidstu_inf_Load(objectsender,EventArgse)//myConnection=newSqlConnectionO;myConnection=newSqlConnection(@z,DataSource=?\SQLEXPRESS;A11achDBFi1ename=DataDirectory\stu_managesystem?mdf:IntegratedSecurity=True;UserInstance=True");sqlConunand=newSqlCommand0;sqlCommand.Connection=myConnection;sqlCommand?CommendType=CommandType.Text;sqlConunand?CommandText="select*fromstudent";myConnection.0pen0;SqlDataReaderdreader=sqlCommand?ExecuteReader(CommandBehavior?CloseConnection);while(dreader?Read()){ListViewItemnewItem=listView1.Items?Add(dreader[z,sno"]?ToString()?TrimO);newltem.SubIterns?Add(dreader["sname"]?ToString()?TrimO);newltem.SubIterns?Add(dreader["ssex"]?ToStringO?TrimO);newltem.SubIterns?Add(dreader["sage"]?ToStringO?TrimO);newltem.SubIterns?Add(dreader["sdept"]?ToStringO?TrimO):}dreader?Close0;}privatevoidlistViewl_SelectedIndexChanged(objectsender,EventArgse){if(listView1.Selectedltems.Count>0){textBox1.Text=listView1.SelectedltemsE0]?Text;textBox2.Text=listView1.SelectedltemsE0]?SubItems[11.Text;textBox3.Text=listView1.Selectedltems10]?SubItems[2]?Text;textBox4?Text=listView1.Selectedltems10]?SubItems[3]?Text;textBox5?Text=listView1.Selectedltems10]?SubItems[4]?Text;}}privatevoidbuttonl_Click(objectsender,EventArgse){if(buttonl.Text=="添加"){buttonl.Text="保存";textBox1.Text=textBox2.Text=textBox3.Text=textBox4?Text=textBox5.Text=textBoxl?Focus();textBox1?Readonly=false;textBox2.Readonly=false;textBox3.Readonly=false;textBox4.Readonly=false;textBox5.Readonly=false;button2.Enabled=false;button3.Enabled=false;}else{sqlConunand?CommandText="insertintostudentvalues(*z,+textBox1?Text++textBox2?Text++textBox3?Text++textBox4?Text++textBox5?Text+myConnection.0pen();intcmdresults=sqlCommand?ExecuteNonQuery();myConnection.Close0;if(cmdresults==1){textBox1?Readonly=true;textBox2.Readonly=true;textBox3.Readonly=true;textBox4.Readonly=true;textBox5.Readonly=true;button2.Enabled=true;button3.Enabled=true;ListViewItemnewItem=listView1.Items?Add(textBox1?Text);newltem.SubIterns?Add(textBox2?Text);newltem.SubIterns?Add(textBox3?Text);newltem.SubIterns?Add(textBox4?Text);newltem.SubIterns?Add(textBox5?Text);buttonl?Text="添力[T;MessageBox.Show(”插入數(shù)據(jù)成功");}elseMessageBox.Show(“插入數(shù)據(jù)失敗/');}}voidTextBoxlTextChanged(objectsender,EventArgse){}}學生信息查詢功能,此部分實現(xiàn)了對學生信息的查詢功能。關鍵代碼如下namespacestu_managesystem{publicpartialclassstu_ser:Form{publicstu_ser0{InitializeComponent0;}privateSqlDataAdaptersqlDataAdapter;privateDataSetdsScore;privatevoidstu_ser_Load(objectsender,EventArgse){//SqlConnectionmyConnection=newSqlConnectionO:SqlConnectionmyConnection=newSqlConnection(@z,DataSource=?\SQLEXPRESS;A11achDBFi1ename=DataDirectoryI\stu_managesystem.mdf;IntegratedSecurity=True;UserInstance=True"):SqlCommandsqlCommand=newSqlCommandO;sqlCommand.Connection=myConnection;sqlCommand?CommandType=CommandType?Text;sqlCommand?CommandText二"select*fromstudentzz:sqlDataAdapter=newSqlDataAdapter();sqlDataAdapter.SelectCommand=sqlCommand;SqlCommandBuilderbuiIder=newSqlCommandBuiIder(sqlDataAdapter):dsScore=newDataSet0;sqlDataAdapter?Fill(dsScore,"student");this?BindingContext[dsScore,"student"]?PositionChanged+二newEventHandler(BindingManagerBase_PositionChanged);dataGridView1.DataSource=dsScore;dataGridView1.DataMember="student";ShowPosition0;^etState(true):}privatevoidShowPosition0{intiCnt,iPos;iCnt=this?BindingContext[dsScore,"student"]?Count;iPos=this?BindingContext[dsScore,"student"]?Position+1;}privatevoidBindingManagerBase_PositionChanged(objectsender,EventArgse){ShowPosition();}privatevoidbuttonl_Click(objectsender,EventArgse){if(textBoxl.Text==")MessageBox.Show(學號不能為空”);else{stringa=textBox1?Text;//SqlConnectionmyConnection=newSqlConnectionO;SqlConnectionmyConnection=newSqlConnection(@,zDataSource二.\SQLEXPRESS:AttachDBFilename=DataDirectory\stu_managesystem.mdf:IntegratedSecurity=True:UserInstance二True");SqlCommandsqlCommand=newSqlCommandO:sqlCommand.Connection=myConnection;sqlCommand?Comm^ndType=CommandType.Text;sqlConimand?Comm^ndText="select*fromstudentwheresno二’"+d+sqlDataAdapter=newSqlDataAdapter0;sqlDataAdapter?SelectCommend=sqlCommand;SqlCommandBuilderbuilder=newSqlCommandBuilder(sqlDataAdapter);dsScore=newDataSet();sqlDataAdapter?Fill(dsScore,"student");this?BindingContext[dsScore,"student"]?PositionChanged+=newEventHandler(BindingManagerBase_PositionChanged);dataGridView1.DataSource=dsScore;dataGridView1.DataMember="student";ShowPosition0;textBoxl?Text=學生成績管理,此部分實現(xiàn)了對學生基本成績添加、修改、刪除操作。關鍵代碼與學生信息管理相似學生成績查詢,此部分實現(xiàn)了對學生成績的查詢操作。關鍵代碼與學生信息查詢相似學生課程管理,此部分實現(xiàn)了對學生課程信息的添加、修改、刪除操作。關鍵代碼與學生信息管理相似學生獎學金管理,此部分實現(xiàn)了對學生已獲獎學金信息的添加、修改、刪除操作。關鍵代碼與學生信息管理相似管理員添加,此部分實現(xiàn)了對管理人員添加操作。關鍵代碼如下namespacestu^managesystemfpublicpartialclassadd__user:Form{publicadd.user0{InitializeComponent0;}privatevoidbuttonl_Click(objectsender,EventArgse){if(textBoxl.Text=={MessageBox.ShowC"用戶幺不能為空");if(textBox2.Text=="){MessageBox.Show(密碼不為空");}else{stringa=textBox1?Text;stringb=textBox2.Text;DB_CZu=newDB_CZ();stringsql="insertintostu_uservalues(*+a++b+u.ExcSql(sql);MessageBox.Show(z,添加成功");textBoxl.Text="”;textBox2.Text="“;}}privatevoidadd_user_Load(objectsender,EventArgse){}}}關閉,此部分實現(xiàn)了對軟件的關閉退出功能關鍵代碼如下privatevoid)<l^jToolStripMenuItem_Click(objectsender,EventArgse){this?CloseO;}創(chuàng)建數(shù)據(jù)庫及表:1、創(chuàng)建數(shù)據(jù)文件和數(shù)據(jù)曰記文件CREATEDATABASESTUMSONPRIMARY(NAME=STUMS_data',FILENAME二G\數(shù)據(jù)庫\數(shù)據(jù)庫文WestDB\STUMS_data.mdf,SIZE二5MB,MAXSIZE二15MB,FILEGROWTH=1MB)LOGON(NAME=STUMS」og‘,F(xiàn)ILENAME二G\數(shù)據(jù)庫\數(shù)據(jù)庫文件\STUMS\STUMS」og」df,SIZE二5MB,MAXSIZE=10MB,FILEGROWTH二:LMB)2、創(chuàng)建學生表createtableStudent(snointconstraint主鍵primarykey,snamevarchar(50),ssexvarchar(50),sagein匸)3、創(chuàng)建課程表createtablecourse(enova「cha「(50),cnamevarchar(50),cscovarchar(50),cc

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論