《2022年2022年管理系统源代码整理 .pdf》由会员分享,可在线阅读,更多相关《2022年2022年管理系统源代码整理 .pdf(7页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、这是一个比较复杂的数据库包含图书管理借书还书学生管理老师管理和数据连接的相关应用代码有详细的解释压缩包里面也有数据库的文件代码里设置的数据库用户是sa 密码是123456 请使用的时候做相关的修改下面给出一部分的代码请继续关注本资源的发布会后面有很多实用的代码上传using System.Windows.Forms; namespace LibraryMis public class DatabaseAccess /* 声明成员变量,这样这个类中的所有方法就可是使用这些变量了*/ private SqlConnection myConnection; private SqlCommand my
2、Command; private SqlDataAdapter myDataAdapter; private DataSet mySet = new DataSet(); /* 写该类的构造方法,该方法名要跟类名相同,无返回值* 当 new 这个类时就会执行这个构造方法*/ public DatabaseAccess() 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 7 页 - - - - - - - - - /* 获得保存连接字符串的文件名及路径*/ /获得应用程序路
3、径string exePath = AppDomain.CurrentDomain.SetupInformation.ApplicationBase; /根据路径和文件名构建FileInfo 对象string fileName = exePath + connectionString.txt; /建立 FileInfo 对象FileInfo f = new FileInfo(fileName); /判断该文件是否存在if (f.Exists)/ 文件存在 /获得文件内容即存在文件中的连接字符串/打开文件,获得读文件的数据流对象StreamReader sr = f.OpenText(); /读
4、文件到变量中string connectionString = sr.ReadToEnd(); /关闭流sr.Close(); /由读出的连接字符串创建Connection对象myConnection = new SqlConnection(connectionString); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 7 页 - - - - - - - - - /由 Connection对象创建 Command对象myCommand = myConnection.
5、CreateCommand(); /创建 DataAdapter对象myDataAdapter = new SqlDataAdapter(); myDataAdapter.SelectCommand = myCommand; /创建 CommandBuilder对象SqlCommandBuilder cb = new SqlCommandBuilder(myDataAdapter); /尝试是否能够打开连接try myConnection.Open(); catch (Exception ex) /打开连接出错,可能是连接字符串有问题,这里调用数据库访问设置窗体来重新设置服务器名和数据库名 M
6、essageBox.Show(连接不到数据库LibraryMis, 请在 “ 数据库访问设置窗体中对数据库访问进行正确的设置” + ,取消登录后重新启动图书馆管理系统!,警告 ,MessageBoxButtons.OK,MessageBoxIcon.Warning ); /创建 数据库访问设置窗体,并显示FormSetDatabase fmsd = new FormSetDatabase(); fmsd.ShowDialog(); finally 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - -
7、- - 第 3 页,共 7 页 - - - - - - - - - try myConnection.Close(); catch (Exception ex) return; else / 文件不存在 /设置默认的连接字符串string connectionString = server=.;database=LibraryMis;uid=sa;pwd=123456; /把这个字符串写入文件StreamWriter sw = new StreamWriter(fileName); sw.Write(connectionString); sw.Close(); MessageBox.Show(
8、文件 + fileName + 不存在,已创建该文件,请重新启动图书馆管理系统,警告,MessageBoxButtons.OK, MessageBoxIcon.Information); return; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 7 页 - - - - - - - - - /*创建查询的方法, 返回数据集对象DataSet, 参数 SelectString表示查询的Sql 语句 ,TableName表示要查询的表名 */ public DataSet
9、 FillDataSet(string SelectString, string TableName) myDataAdapter.SelectCommand.CommandText = SelectString;/设置查询的Sql 语句myDataAdapter.Fill(mySet,TableName); return mySet; /*执行插入,更新,修改的操作,参数 CommandString表示 Sql 语句 */ public void ExeCommand(string CommandString) myCommand.CommandText = CommandString; m
10、yConnection.Open(); try myCommand.ExecuteNonQuery(); catch (Exception ex) MessageBox.Show(ex.ToString(),警告 ,MessageBoxButtons.OK,MessageBoxIcon.Warning); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 7 页 - - - - - - - - - finally myConnection.Close(); /*执行存储过程
11、的方法,参数为 Command对象 */ public void ExeStoreProcedure(SqlCommand command) command.Connection = myConnection; myCommand = command; myConnection.Open(); try myCommand.ExecuteNonQuery(); catch (Exception ex) MessageBox.Show(ex.ToString(), 警告 , MessageBoxButtons.OK, MessageBoxIcon.Warning); finally 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 7 页 - - - - - - - - - myConnection.Close(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 7 页,共 7 页 - - - - - - - - -
限制150内