• 大小: 565KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-26
  • 语言: C#
  • 标签: c#  

资源简介

有登陆界面,实现了对图书的基本管理,有图书添加,图书删除根据条件查询和更新数据等。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace 图书管理系统
{
    public partial class AddBook : Form
    {
        public AddBook()
        {
            InitializeComponent();
        }
        /// 
        /// 图书添加事件
        /// 

        /// 
        /// 
        private void button1_Click(object sender EventArgs e)
        {
            //添加图书信息SQL语句
            string sql = “insert into bookinfo(booknamebookpricebookpubbookisbnbookauthorbookcontentbookdate) values(‘{0}‘{1}‘{2}‘‘{3}‘‘{4}‘‘{5}‘‘{6}‘)“;
            //格式化添加图书信息SQL语句
            sql = string.Format(sql textBox1.Text double.Parse(textBox3.Text) textBox5.Text textBox6.Text textBox2.Text richTextBox1.Text textBox4.Text);
            //创建数据库操作类的对象
            Function fun = new Function();
            //执行添加图书信息的SQL语句
            if (fun.NonQuery(sql) == 1)
            {
                MessageBox.Show(“添加图书信息成功!“);
            }
            else
            {
                MessageBox.Show(“添加图书信息失败!“);
            }

        }

        private void button2_Click(object sender EventArgs e)
        {
            this.Close();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1189  2014-09-10 13:57  图书管理系统\UpgradeLog.xml

     文件       3348  2014-09-10 13:57  图书管理系统\_UpgradeReport_Files\UpgradeReport.css

     文件      12505  2010-05-04 01:19  图书管理系统\_UpgradeReport_Files\UpgradeReport.xslt

     文件         69  2014-09-10 13:57  图书管理系统\_UpgradeReport_Files\UpgradeReport_Minus.gif

     文件         71  2014-09-10 13:57  图书管理系统\_UpgradeReport_Files\UpgradeReport_Plus.gif

     文件       1583  2014-09-10 13:55  图书管理系统\图书管理系统\AddBook.cs

     文件      11031  2014-09-10 13:55  图书管理系统\图书管理系统\AddBook.Designer.cs

     文件       5814  2014-09-10 13:55  图书管理系统\图书管理系统\AddBook.resx

     文件       4286  2014-09-10 13:55  图书管理系统\图书管理系统\bin\Debug\BG009.GIF

     文件       1375  2014-09-10 13:55  图书管理系统\图书管理系统\bin\Debug\BG01.GIF

     文件      43008  2014-09-10 21:55  图书管理系统\图书管理系统\bin\Debug\图书管理系统.exe

     文件      65024  2014-09-10 21:55  图书管理系统\图书管理系统\bin\Debug\图书管理系统.pdb

     文件      11608  2014-09-11 10:37  图书管理系统\图书管理系统\bin\Debug\图书管理系统.vshost.exe

     文件        490  2010-03-17 22:39  图书管理系统\图书管理系统\bin\Debug\图书管理系统.vshost.exe.manifest

     文件    3145728  2014-09-10 21:57  图书管理系统\图书管理系统\database\BookManager.mdf

     文件    1048576  2014-09-10 21:57  图书管理系统\图书管理系统\database\BookManager_log.ldf

     文件       3333  2014-09-10 13:55  图书管理系统\图书管理系统\DelBook.cs

     文件       4814  2014-09-10 13:55  图书管理系统\图书管理系统\DelBook.Designer.cs

     文件       5814  2014-09-10 13:55  图书管理系统\图书管理系统\DelBook.resx

     文件       1970  2014-09-10 14:00  图书管理系统\图书管理系统\Function.cs

     文件       1912  2014-09-10 14:00  图书管理系统\图书管理系统\Login.cs

     文件       4881  2014-09-10 14:00  图书管理系统\图书管理系统\Login.Designer.cs

     文件       5814  2014-09-10 14:00  图书管理系统\图书管理系统\Login.resx

     文件       1894  2014-09-10 13:55  图书管理系统\图书管理系统\Main.cs

     文件      10234  2014-09-10 13:55  图书管理系统\图书管理系统\Main.Designer.cs

     文件       6213  2014-09-10 13:55  图书管理系统\图书管理系统\Main.resx

     文件       6568  2014-09-10 21:55  图书管理系统\图书管理系统\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       2286  2014-09-10 21:55  图书管理系统\图书管理系统\obj\Debug\GenerateResource-ResGen.read.1.tlog

     文件          2  2014-09-10 21:55  图书管理系统\图书管理系统\obj\Debug\GenerateResource-ResGen.read.4.tlog

     文件       2982  2014-09-10 21:55  图书管理系统\图书管理系统\obj\Debug\GenerateResource-ResGen.write.1.tlog

............此处省略48个文件信息

评论

共有 条评论