资源简介
C#+sql图书管理系统+源码 不是很完整 但是大家可以借鉴一下
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Data .SqlClient;
using System.Data;
namespace ClassLibrary
{
public class Dbconnection
{
///
/// SQL-server 数据库连接
///
/// SqlConnection myConnection
public static SqlConnection Dblink()
{
string connectionString = “server=(local);database =Library;integrated security=true“;
SqlConnection myConnection = new SqlConnection(connectionString);
//SqlCommand command = new SqlCommand(connectionString);
return myConnection;
}
///
/// 执行SQL语句
///
///
/// int number
public int ExeInfochange(string sql)
{
try
{
SqlConnection myConnection = Dblink();
SqlCommand myCommand = myConnection.CreateCommand();
myCommand.CommandText = sql;
myConnection.Open();
int number = myCommand.ExecuteNonQuery();
myConnection.Close();
myConnection.Dispose();
return number;
}
catch (Exception)
{
return 0;
}
}
///
/// 执行 Select 语句
///
///
///
public object ExecuteSelect(string sql)
{
try
{
SqlConnection myConnection = Dblink();
SqlCommand myCommand = myConnection.CreateCommand();
myCommand.CommandText = sql;
myConnection.Open();
int number = Convert .ToInt32(myCommand.ExecuteScalar());
myConnection.Close();
myConnection.Dispose();
return number;
}
catch (Exception)
{
return 0;
}
}
///
/// 获取数据集
///
///
/// DataSet ds
public DataSet ds(string str1)
{
string sql = str1;
try
{
SqlConnection myConnection = Dblink();
SqlCommand myCommand = myConnection.CreateCommand();
myCommand.CommandText = sql;
myConnection.Open();
SqlDataAdapter myDataReader = new SqlDataAdapter();
myDataReader.SelectCommand = myCommand;
DataSet ds = new DataSet();
myDataReader.Fill(ds);
myConnection.Close();
myConnection.Dispose();
return ds;
}
catch (Excepti
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20480 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\bin\Debug\ClassLibrary.dll
文件 19968 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\bin\Debug\ClassLibrary.pdb
文件 1093632 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\bin\Debug\Interop.Excel.dll
文件 217088 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\bin\Debug\Interop.Microsoft.Office.Core.dll
文件 57344 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\bin\Debug\Interop.VBIDE.dll
文件 2972 2008-12-08 08:44 图书管理系统(二) 1.1 (01)\ClassLibrary\ClassLibrary.csproj
文件 3102 2009-01-01 20:20 图书管理系统(二) 1.1 (01)\ClassLibrary\Dbconnection.cs
文件 6937 2008-12-31 03:37 图书管理系统(二) 1.1 (01)\ClassLibrary\Dbinfoshow.cs
文件 417 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\ClassLibrary.csproj.FileList.txt
文件 1257 2008-12-28 20:25 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\ClassLibrary.csproj.FileListAbsolute.txt
文件 726 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\Debug\ClassLibrary.csproj.ResolveComReference.cache
文件 20480 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\Debug\ClassLibrary.dll
文件 19968 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\Debug\ClassLibrary.pdb
文件 1093632 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\Debug\Interop.Excel.dll
文件 217088 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\Debug\Interop.Microsoft.Office.Core.dll
文件 57344 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\Debug\Interop.VBIDE.dll
文件 16384 2009-01-01 15:33 图书管理系统(二) 1.1 (01)\ClassLibrary\obj\Debug\Refactor\ClassLibrary.dll
文件 1327 2008-11-21 16:39 图书管理系统(二) 1.1 (01)\ClassLibrary\Properties\AssemblyInfo.cs
文件 513 2008-12-08 12:25 图书管理系统(二) 1.1 (01)\图书管理系统(二)\app.config
文件 20480 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\ClassLibrary.dll
文件 19968 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\ClassLibrary.pdb
文件 1093632 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\Interop.Excel.dll
文件 217088 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\Interop.Microsoft.Office.Core.dll
文件 57344 2009-01-01 20:36 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\Interop.VBIDE.dll
文件 16384 2008-12-08 13:11 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\LibraryReport1.rpt
文件 933888 2009-01-01 20:37 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\图书管理系统(二).exe
文件 513 2008-12-08 12:25 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\图书管理系统(二).exe.config
文件 585216 2009-01-01 20:37 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\图书管理系统(二).pdb
文件 5632 2005-12-08 14:51 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\图书管理系统(二).vshost.exe
文件 513 2008-12-08 12:25 图书管理系统(二) 1.1 (01)\图书管理系统(二)\bin\Debug\图书管理系统(二).vshost.exe.config
............此处省略204个文件信息
相关资源
- 学生成绩管理系统(C#+SQL)
- 纯C#+SQL2008 学生成绩管理系统
- 人事小项目(c#+sql+mvc)
- asp.net+c#+sql server企业文档管理系统全
- C#+SQL企业文档管理系统全套
- c#+sql人事工资管理系统
- C#+SQL Server停车管理系统
- 图书馆管理系统ASP.net C#+sql数据库
- C#+SQL开发的图书管理系统
- VS2010C#+SQLserver下的学生选课系统
- 教材管理系统 C#+SQL 三层架构
- 企业考勤管理系统C#+SQL)源代码
- asp.net(C#+SqlServer)编写图书借阅系统
- c#+sql 酒店客房管理系统+系统开发要求
- C#+SQL电影票销售系统
- 管理系统c#+sql完整项目版
- (C#+SQL)旅游管理系统
- 仓库管理系统c#+SQLSERVER
- C#+SQLSERVER网上教学系统
- 仓库管理系统源程序(C#+sql)
- C#+SQL学生成绩管理系统
- C#+SQL2005图书管理系统
- 图书管理系统c#+sql server2005
- C#+SQL Server的简单银行管理系统
- c#+sqlserver电费收费管理系统
- Visual C#+SQL Server数据库开发与光盘
- 超市管理系统C#+SQL
- C#+SQLServer2000学生管理系统源代码
- c#+sql2005酒店管理系统以及毕业相关文
- C#+SQL Server工资管理系统
评论
共有 条评论