资源简介
C#图书管理系统.rar
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Library
{
public partial class addBook : Form
{
private int FlAG = 1;
private string strConn = @“Data Source=ENVI;Initial Catalog=Librarymanage;uid=王彬;pwd=123456“;
public addBook()
{
InitializeComponent();
}
private void button2_Click(object sender EventArgs e)
{
this.Close();
}
private void button1_Click(object sender EventArgs e)
{
string ID;
if (textBox1.Text == ““)
{
MessageBox.Show(“图书编码不能为空!“ “添加失败“ MessageBoxButtons.OK MessageBoxIcon.Error);
return;
}
else
{
ID = textBox1.Text;
}
string ISBN = textBox2.Text.Trim();
string name = textBox3.Text.Trim();
string type = textBox4.Text.Trim();
string author = textBox5.Text.Trim();
string press = textBox6.Text.Trim();
string pressdate = textBox7.Text.Trim();
string price = textBox8.Text.Trim();
string inputdate = textBox9.Text.Trim();
string quantity = textBox10.Text.Trim();
string isborrow = comboBox1.Text.Trim();
try
{
SqlConnection conn = new SqlConnection(strConn);
SqlCommand cmd_maxid = new SqlCommand();
cmd_maxid.Connection = conn;
conn.Open();
SqlCommand cmd_insert = new SqlCommand();
cmd_insert.Connection = conn;
cmd_insert.CommandText = “insert into Bookinfo(Book_IDBook_ISBNBook_nameBook_typeBook_authorBook_pressBook_pressdateBook_priceBook_inputdateBook_quantityBook_isborrow)“;
cmd_insert.CommandText += “values(@BookID@BookISBN@Bookname@Booktype@Bookauthor@Bookpress@Bookpressdate@Bookprice@Bookinputdate@Bookquantity@Bookisborrow)“;
cmd_insert.Parameters.Add(“@BookID“ SqlDbType.NVarChar 8);
cmd_insert.Parameters.Add(“@BookISBN“ SqlDbType.NVarChar 30);
cmd_insert.Parameters.Add(“@Bookname“ SqlDbType.NVarChar 50);
cmd_insert.Parameters.Add(“@Booktype“ SqlDbType.NVarChar 30);
cmd_insert.Parameters.Add(“@Bookauthor“ SqlDbType.NVarChar 30);
cmd_insert.Parameters.Add(“@Bookpress“ SqlDbType.NVarChar 50);
cmd_insert.Parameters.Add(“@Bookpressdate“ SqlDbType.DateTime);
cmd_insert.Parameters.Add(“@Bookprice“ SqlDbType.Money);
cmd_insert.Parameters.Add(“@Bookinputdate“ SqlDbType.DateTime);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
..A..H. 88064 2017-06-28 12:08 C#图书管理系统\Library\.vs\Library\v14\.suo
文件 4523 2017-06-27 16:05 C#图书管理系统\Library\Library\addBook.cs
文件 16063 2017-06-27 16:05 C#图书管理系统\Library\Library\addBook.Designer.cs
文件 107589 2017-06-27 16:05 C#图书管理系统\Library\Library\addBook.resx
文件 5215 2017-06-27 17:30 C#图书管理系统\Library\Library\addReader.cs
文件 18234 2017-06-27 17:27 C#图书管理系统\Library\Library\addReader.Designer.cs
文件 86083 2017-06-27 17:27 C#图书管理系统\Library\Library\addReader.resx
文件 3314 2017-06-27 16:05 C#图书管理系统\Library\Library\addUser.cs
文件 9000 2017-06-27 16:05 C#图书管理系统\Library\Library\addUser.Designer.cs
文件 107589 2017-06-27 16:05 C#图书管理系统\Library\Library\addUser.resx
文件 521 2017-06-24 11:18 C#图书管理系统\Library\Library\App.config
文件 1902080 2017-06-28 09:06 C#图书管理系统\Library\Library\bin\Debug\Library.exe
文件 521 2017-06-24 11:18 C#图书管理系统\Library\Library\bin\Debug\Library.exe.config
文件 534016 2017-06-28 09:06 C#图书管理系统\Library\Library\bin\Debug\Library.pdb
文件 22696 2017-06-28 12:08 C#图书管理系统\Library\Library\bin\Debug\Library.vshost.exe
文件 521 2017-06-24 11:18 C#图书管理系统\Library\Library\bin\Debug\Library.vshost.exe.config
文件 490 2017-03-19 05:00 C#图书管理系统\Library\Library\bin\Debug\Library.vshost.exe.manifest
文件 10108 2017-06-27 22:30 C#图书管理系统\Library\Library\borrowBook.cs
文件 9508 2017-06-27 22:30 C#图书管理系统\Library\Library\borrowBook.Designer.cs
文件 107589 2017-06-27 22:30 C#图书管理系统\Library\Library\borrowBook.resx
文件 3244 2017-06-27 16:05 C#图书管理系统\Library\Library\deleteBook.cs
文件 19376 2017-06-27 16:05 C#图书管理系统\Library\Library\deleteBook.Designer.cs
文件 108210 2017-06-27 16:05 C#图书管理系统\Library\Library\deleteBook.resx
文件 3463 2017-06-27 16:05 C#图书管理系统\Library\Library\deleteReader.cs
文件 8937 2017-06-27 16:05 C#图书管理系统\Library\Library\deleteReader.Designer.cs
文件 86706 2017-06-27 16:05 C#图书管理系统\Library\Library\deleteReader.resx
文件 3443 2017-06-27 22:44 C#图书管理系统\Library\Library\deleteUser.cs
文件 14441 2017-06-27 22:44 C#图书管理系统\Library\Library\deleteUser.Designer.cs
文件 92260 2017-06-27 22:44 C#图书管理系统\Library\Library\deleteUser.resx
文件 3720 2017-06-27 18:32 C#图书管理系统\Library\Library\editBook.cs
............此处省略160个文件信息
- 上一篇:c#汽车销售系统
- 下一篇:C#员工管理系统123016
相关资源
- C#基于BouncyCastle.Crypto的SM2_3实现导入即
- zw_WPF_开发教程(_中文版).zip
- asp.net进销存系统源码.rar
- 网上商城源码(asp.netmvc开发).rar
- 0027ASP.NET公司员工管理系统的设计与实
- asp.net捐赠慈善公益管理系统.rar
- 176ASP.NETweb图纸管理系统.zip
- 010ASP.NET人才招聘网站.rar
- 非常酷的wpf控件库包括一套实现得很
- .NETWinForm和WPF的UI界面库,收集整合多
- asp.net电子商务平台数据库源码.zip
- 020asp.net火车票预定系统.rar
- C#通讯调试工具v3.0源码20130827.zip
- C#编程词典(个人版)专为编程人员准
- 零基础学ASP.NET源码.rar
- MoreEffectiveC#中文高清.pdf
- CLRviaC#第4版_PDF电子书带书签目录高清
- VisualC#2008控件使用范例详解--PDF+源码
- ASP.net基于百度AI的在线人脸登陆,人
- ASP.net网上销售系统.zip
- ASP.NETMVC5kjjm_jb51.rar
- bigTaxi_0.csv
- 51CTO-9787302275343Web程序设计——ASP.NE
- WPF揭秘.pdf
- MF000165-房产中介管理系统源码asp.net房
- C#设计模式+源码JamesW.Cooper.zip
- 影院管理系统c#毕业设计作品.zip
- MF000164-ASP.NET酒店管理系统源码.zip
- 黄浦区19.csv
- C#小区物业管理系统.zip
评论
共有 条评论