C#圖書館管理系統(tǒng)_第1頁
C#圖書館管理系統(tǒng)_第2頁
C#圖書館管理系統(tǒng)_第3頁
C#圖書館管理系統(tǒng)_第4頁
C#圖書館管理系統(tǒng)_第5頁
已閱讀5頁,還剩22頁未讀, 繼續(xù)免費閱讀

下載本文檔

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

文檔簡介

1、-作者xxxx-日期xxxxC#圖書館管理系統(tǒng)【精品文檔】 目錄1、緒論22、數(shù)據(jù)庫設(shè)計32.1 數(shù)據(jù)庫分析343、界面設(shè)計43.1 登陸界面43.2 圖書管理系統(tǒng)界面83.3 圖書信息界面93.4 圖書歸還界面113.5 圖書借閱界面133.6 用戶信息界面151618194、系統(tǒng)測試214.1 登陸功能214.2 借閱圖書功能224.3 歸還圖書庫功能224.4 圖書信息功能234.5 管理員登陸功能234.6 添加圖書功能 244.7 用戶信息245 、連接數(shù)據(jù)庫24255.2操作數(shù)據(jù)庫中的數(shù)據(jù)256 、總結(jié)271、緒論2、數(shù)據(jù)庫設(shè)計2.1 數(shù)據(jù)庫分析本系統(tǒng)利用Visual Studio

2、 2010處理數(shù)據(jù)庫的功能,實現(xiàn)對圖書館信息的管理。主要功能為管理有關(guān)用戶、管理員、書籍和借閱的信息等。本系統(tǒng)的結(jié)構(gòu)分為用戶信息管理模塊、書籍信息管理模塊、借閱信息管理模塊、管理者管理信息模塊和查詢處理模塊。圖書館管理系統(tǒng)框圖如圖所示 進入圖書館管理系統(tǒng)借閱圖書查詢圖書增加圖書查詢圖書圖書管理登錄 用戶 管理員失敗成功 3、界面設(shè)計登陸界面amespace 圖書管理系統(tǒng) public partial class Form1 : Form public Form1() InitializeComponent(); public static Form fm = null; private sta

3、tic int ErrorTimes = 0; private void button3_Click(object sender, EventArgs e) this.Close(); private void textBox1_TextChanged(object sender, EventArgs e) private void button1_Click(object sender, EventArgs e) if (textBox1.Text = | textBox2.Text = ) MessageBox.Show(提示:請輸入用戶名和密碼!, 警告); SqlConnection

4、conn = new SqlConnection(Server=PC_201402131602;Integrated Security=true;DataBase=圖書管理系統(tǒng)); conn.Open(); SqlCommand cmd = new SqlCommand(select * from Table_1 where id= + textBox1.Text.Trim() + and us= + textBox2.Text.Trim() + , conn); SqlDataReader sdr = cmd.ExecuteReader(); sdr.Read(); if (sdr.HasR

5、ows) MessageBox.Show(登錄成功!, 提示); Form2 fm = new Form2(); fm.Show(); this.Hide(); else ErrorTimes+; MessageBox.Show(用戶名或密碼不正確!您還有 + (3 - ErrorTimes) + 次輸入密碼的機會,請重新輸入!如果超過3次,系統(tǒng)將自動關(guān)閉); if (ErrorTimes = 3) ErrorTimes = 0; conn.Close(); private void Form1_Load(object sender, EventArgs e) private void but

6、ton4_Click(object sender, EventArgs e) if (textBox1.Text = | textBox2.Text = ) MessageBox.Show(提示:請輸入用戶名和密碼!, 警告); SqlConnection conn = new SqlConnection(Server=PC_201402131602;Integrated Security=true;DataBase=圖書管理系統(tǒng)); conn.Open(); SqlCommand cmd = new SqlCommand(select * from Table_2 where uid= +

7、textBox1.Text.Trim() + and usr= + textBox2.Text.Trim() + , conn); SqlDataReader sdr = cmd.ExecuteReader(); sdr.Read(); if (sdr.HasRows) MessageBox.Show(登錄成功!, 提示); Form7 fm = new Form7(); fm.Show(); this.Hide(); else ErrorTimes+; MessageBox.Show(用戶名或密碼不正確!您還有 + (3 - ErrorTimes) + 次輸入密碼的機會,請重新輸入!如果超過

8、3次,系統(tǒng)將自動關(guān)閉); if (ErrorTimes = 3) ErrorTimes = 0; conn.Close(); private void button2_Click(object sender, EventArgs e) Form8 f1=new Form8(); f1.Show(); private void button5_Click(object sender, EventArgs e) this.Hide(); Form10 f2 = new Form10(); f2.Show(); namespace 圖書管理系統(tǒng) public partial class Form2

9、: Form public Form2() InitializeComponent(); private void button5_Click(object sender, EventArgs e) this.Close(); private void button3_Click(object sender, EventArgs e) Form3 f2 = new Form3(); f2.Show(); this.Close(); MessageBox.Show(您已成功進入-圖書信息!); private void button2_Click(object sender, EventArgs

10、 e) Form4 f4 = new Form4(); f4.Show(); this.Close(); MessageBox.Show(您已成功進入-還書系統(tǒng)!); private void button1_Click(object sender, EventArgs e) Form5 f5 = new Form5(); f5.Show(); this.Close(); MessageBox.Show(您已成功進入-借書系統(tǒng)!); namespace 圖書管理系統(tǒng) public partial class Form3 : Form public Form3() InitializeCompo

11、nent(); private void Form3_Load(object sender, EventArgs e) / TODO: 這行代碼將數(shù)據(jù)加載到表“”中。您可以根據(jù)需要移動或刪除它。 this.table_3TableAdapter.Fill(this.圖書管理系統(tǒng)DataSet.Table_3); private void textBox1_TextChanged(object sender, EventArgs e) private void button1_Click(object sender, EventArgs e) this.Close(); namespace 圖書

12、管理系統(tǒng) public partial class Form4 : Form public Form4() InitializeComponent(); private void button1_Click(object sender, EventArgs e) if (textBox1.Text = ) MessageBox.Show(提示:請輸入所借書籍編號!, 警告); SqlConnection conn = new SqlConnection(Server=PC_201402131602;Integrated Security=true;DataBase=圖書管理系統(tǒng)); conn.

13、Open(); SqlCommand cmd = new SqlCommand(select * from Table_4 where sid= + textBox1.Text.Trim() + , conn); SqlDataReader sdr = cmd.ExecuteReader(); sdr.Read(); if (sdr.HasRows) MessageBox.Show(該書已還, 提示); else sdr.Close(); string myinsert = insert into Table_4 (sid) values ( + textBox1.Text + ) ; Sql

14、Command mycom = new SqlCommand(myinsert, conn); mycom.ExecuteNonQuery(); conn.Close(); conn.Dispose(); MessageBox.Show(您已還書成功!); private void Form4_Load(object sender, EventArgs e) / TODO: 這行代碼將數(shù)據(jù)加載到表“”中。您可以根據(jù)需要移動或刪除它。 this.table_4TableAdapter.Fill(this.圖書管理系統(tǒng)DataSet.Table_4); / TODO: 這行代碼將數(shù)據(jù)加載到表“”中

15、。您可以根據(jù)需要移動或刪除它。 this.table_3TableAdapter.Fill(this.圖書管理系統(tǒng)DataSet.Table_3); private void button2_Click(object sender, EventArgs e) this.Close(); Form2 f2 = new Form2(); f2.Show(); namespace 圖書管理系統(tǒng) public partial class Form5 : Form public Form5() InitializeComponent(); private void button1_Click(objec

16、t sender, EventArgs e) this.Close(); Form2 f2 = new Form2(); f2.Show(); private void Form5_Load(object sender, EventArgs e) / TODO: 這行代碼將數(shù)據(jù)加載到表“”中。您可以根據(jù)需要移動或刪除它。 this.table_4TableAdapter.Fill(this.圖書管理系統(tǒng)DataSet.Table_4); / TODO: 這行代碼將數(shù)據(jù)加載到表“”中。您可以根據(jù)需要移動或刪除它。 this.table_3TableAdapter.Fill(this.圖書管理系統(tǒng)

17、DataSet.Table_3); private void button2_Click(object sender, EventArgs e) if (textBox1.Text = ) MessageBox.Show(提示:請輸入所借書籍編號!, 警告); SqlConnection conn = new SqlConnection(Server=PC_201402131602;Integrated Security=true;DataBase=圖書管理系統(tǒng)); conn.Open(); SqlCommand cmd = new SqlCommand(select * from Table

18、_4 where sid= + textBox1.Text.Trim() + , conn); SqlDataReader sdr = cmd.ExecuteReader(); sdr.Read(); if (sdr.HasRows) MessageBox.Show(該書已借, 提示); else sdr.Close(); string myinsert = insert into Table_4 (sid) values ( + textBox1.Text + ) ; SqlCommand mycom = new SqlCommand(myinsert, conn); mycom.Execu

19、teNonQuery(); conn.Close(); conn.Dispose(); MessageBox.Show(您已借書成功!); private void textBox2_TextChanged(object sender, EventArgs e) 用戶信息namespace 圖書管理系統(tǒng) public partial class Form6 : Form public Form6() InitializeComponent(); private void Form6_Load(object sender, EventArgs e) / TODO: 這行代碼將數(shù)據(jù)加載到表“”中。

20、您可以根據(jù)需要移動或刪除它。 this.table_1TableAdapter.Fill(this.圖書管理系統(tǒng)DataSet.Table_1); private void button1_Click(object sender, EventArgs e) this.Close(); 3.7 管理員主界面namespace 圖書管理系統(tǒng) public partial class Form7 : Form public Form7() InitializeComponent(); private void button2_Click(object sender, EventArgs e) For

21、m6 f1 = new Form6(); f1.Show(); MessageBox.Show(您已成功進入-用戶信息!); private void button3_Click(object sender, EventArgs e) Form3 f2 = new Form3(); f2.Show(); MessageBox.Show(您已成功進入-圖書信息!); private void button1_Click(object sender, EventArgs e) Form9 f2 = new Form9(); f2.Show(); MessageBox.Show(您已成功進入-添加圖

22、書系統(tǒng)!); private void button4_Click(object sender, EventArgs e) this.Close(); namespace 圖書管理系統(tǒng) public partial class Form8 : Form public Form8() InitializeComponent(); private void button1_Click(object sender, EventArgs e) if (textBox1.Text = | textBox2.Text = ) MessageBox.Show(提示:請輸入用戶名和密碼!, 警告); SqlC

23、onnection conn = new SqlConnection(Server=PC_201402131602;Integrated Security=true;DataBase=圖書管理系統(tǒng)); conn.Open(); SqlCommand cmd = new SqlCommand(select * from table_1 where id= + textBox1.Text.Trim() + and us= + textBox2.Text.Trim() + , conn); SqlDataReader sdr = cmd.ExecuteReader(); sdr.Read(); if

24、 (sdr.HasRows) MessageBox.Show(該用戶已注冊,請使用其他用戶名, 提示); else sdr.Close(); string myinsert = insert into table_1(id,us) values ( + textBox1.Text + , + textBox2.Text + ); SqlCommand mycom = new SqlCommand(myinsert, conn); mycom.ExecuteNonQuery(); conn.Close(); conn.Dispose(); MessageBox.Show(您已注冊成功!); pr

25、ivate void button2_Click(object sender, EventArgs e) this.Close(); private void Form8_Load(object sender, EventArgs e) 3.9 添加圖書namespace 圖書管理系統(tǒng) public partial class Form9 : Form public Form9() InitializeComponent(); private void button2_Click(object sender, EventArgs e) private void button1_Click(ob

26、ject sender, EventArgs e) SqlConnection conn = new SqlConnection(server=PC_201402131602;database=圖書管理系統(tǒng);integrated Security=true); string sql = insert into Table_3 (sid,sdata,sname) values( + textBox1.Text + , + textBox2.Text + , + textBox3.Text + ); conn.Open(); SqlCommand comm = new SqlCommand(sql

27、, conn); if (conn.State = ConnectionState.Closed) conn.Open(); if (Convert.ToInt32(comm.ExecuteNonQuery() 0) label4.Text = 成功!; MessageBox.Show(您已成功添加數(shù)據(jù)!); else label4.Text = 失??!; 4、 系統(tǒng)測試登陸借閱圖書歸還圖書圖書信息管理員登陸添加圖書用戶信息5、連接數(shù)據(jù)庫為數(shù)據(jù)庫BookManage和本系統(tǒng)之間建立一個數(shù)據(jù)連接。(1)在服務(wù)器資源管理器中右擊“數(shù)據(jù)連接”節(jié)點(VS 2008中操作)。在彈出的快捷菜單中執(zhí)行“添加

28、連接”命令,打開Data Link Properties對話框。切換到Provider選項卡,選中列表框中的Microsoft OLE DB Provider for SQL Server項。單擊“下一步”切換到Connection選項卡。(2)在其中的第一個下拉列表框中選擇數(shù)據(jù)庫所在服務(wù)器名稱。輸入登錄服務(wù)器信息后選擇數(shù)據(jù)庫BookManage,然后單擊測試按鈕。如果測試成功,單擊“確定”按鈕。5.1 連接數(shù)據(jù)庫(1)定義數(shù)據(jù)庫連接字符串,代碼如下:Private static string ConnectString = Data Source= (local)sqlexpress;Dat

29、aBase=BookManage.mdf;(2)創(chuàng)建Connection對象,代碼如下:SqlConnection con = new SqlConnection(ConnectString);(3)打開連接,代碼如下:con.Open();(4)關(guān)閉連接,代碼如下:con.Close();using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace BookManage class

30、 DataAccess private static string ConnectString = Data Source =SQLEXPRESS;AttachDbFilename=F:BookManagedataBookManage.mdf;Integrated Security=False;/數(shù)據(jù)庫連接字符串 / / 根據(jù)表名獲取數(shù)據(jù)集的表 / / / public static DataTable GetDataSetByTableName(string table) using (SqlConnection con = new SqlConnection(ConnectString)/

31、創(chuàng)建數(shù)據(jù)庫連接對象 string sql = select * from + table + ;/查詢sql語句try SqlDataAdapter adapter = new SqlDataAdapter(sql, con);/創(chuàng)建適配器對象 DataSet ds = new DataSet();/創(chuàng)建數(shù)據(jù)集對象 adapter.Fill(ds, table);/填充數(shù)據(jù)集 return ds.Tables0;/返回數(shù)據(jù)表 catch (SqlException ex) throw new Exception(ex.Message); ; public static DataSet GetD

32、ataSetBySql(string sql) using (SqlConnection con = new SqlConnection(ConnectString)/創(chuàng)建數(shù)據(jù)庫連接對象 SqlDataAdapter adapter = new SqlDataAdapter(sql,con);/創(chuàng)建適配器對象 DataSet ds = new DataSet();/創(chuàng)建數(shù)據(jù)集對象 try adapter.Fill(ds);/填充數(shù)據(jù)集 return ds;/返回數(shù)據(jù)集 catch (SqlException ex) throw new Exception(ex.Message) public st

溫馨提示

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

評論

0/150

提交評論